Add tracing options and compiled-in paths.
[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
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: acconfig.h,v $
6fbcd07e 32 * Revision 1.2 2002/02/02 19:16:13 mdw
33 * Add tracing options and compiled-in paths.
34 *
2ec1e693 35 * Revision 1.1 2002/01/25 19:34:45 mdw
36 * Initial revision
37 *
38 */
39
40#ifndef ACCONFIG_H
41#define ACCONFIG_H
42
43#ifdef __cplusplus
44 extern "C" {
45#endif
46
47/*----- Configuration macros ----------------------------------------------*/
48@TOP@
49
50/* Package name. */
51#define PACKAGE "jog"
52
53/* Package version number. */
54#define VERSION "1.0.0"
55
56/* If it's not provided already, define to be a signed integer type capable
57 * of representing any object size. (If in doubt, make it an `int'.) */
58#undef ssize_t
59
6fbcd07e 60/* Pathname to default socket for socket transport. */
61#define JOGSOCKET "/var/local/lib/jog/socket"
62
63/* Pathname to audio data. */
64#define AUDIODIR "/usr/local/share/jog/audio"
65
66/* Define to turn off tracing. */
67#undef NTRACE
68
2ec1e693 69@BOTTOM@
70
71/*----- That's all, folks -------------------------------------------------*/
72
73#ifdef __cplusplus
74 }
75#endif
76
77#endif