Expunge revision histories.
[jog] / acconfig.h
CommitLineData
2ec1e693 1/* -*-c-*-
2 *
6fbcd07e 3 * $Id: acconfig.h,v 1.2 2002/02/02 19:16:13 mdw Exp $
2ec1e693 4 *
5 * Configuration header
6 *
7 * (c) 2001 Mark Wooding
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Jog: Programming for a jogging machine.
13 *
14 * Jog is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * Jog is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Jog; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
2ec1e693 29#ifndef ACCONFIG_H
30#define ACCONFIG_H
31
32#ifdef __cplusplus
33 extern "C" {
34#endif
35
36/*----- Configuration macros ----------------------------------------------*/
37@TOP@
38
39/* Package name. */
40#define PACKAGE "jog"
41
42/* Package version number. */
43#define VERSION "1.0.0"
44
45/* If it's not provided already, define to be a signed integer type capable
46 * of representing any object size. (If in doubt, make it an `int'.) */
47#undef ssize_t
48
6fbcd07e 49/* Pathname to default socket for socket transport. */
50#define JOGSOCKET "/var/local/lib/jog/socket"
51
52/* Pathname to audio data. */
53#define AUDIODIR "/usr/local/share/jog/audio"
54
55/* Define to turn off tracing. */
56#undef NTRACE
57
2ec1e693 58@BOTTOM@
59
60/*----- That's all, folks -------------------------------------------------*/
61
62#ifdef __cplusplus
63 }
64#endif
65
66#endif