~ubuntu-branches/ubuntu/gutsy/ggz-client-libs/gutsy

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Zander
  • Date: 2003-12-01 00:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20031201000000-tw4vobhkjl4pz90q
Tags: 0.0.7-1
* New upstream release
* The libggzcore2 package has been renamed libggzcore3 due to a SONAME
  bump upstream.
* Remove the Build-Conflict: on libggzmod-dev, libtool seems to be
  behaving

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
/* AF_UNIX is available */
4
4
#undef AF_LOCAL
5
5
 
6
 
/* Define to enable debugging */
 
6
/* Use debugging code */
7
7
#undef DEBUG
8
8
 
9
 
/* Directory containing GGZ client module executables */
10
 
#undef GAMEDIR
 
9
/* Define to use dmalloc memory debugging */
 
10
#undef DEBUG_MEM
11
11
 
12
 
/* Directory containing GGZ configuration files */
 
12
/* Path to GGZ configuration files */
13
13
#undef GGZCONFDIR
14
14
 
15
 
/* Directory containing GGZ shared data */
 
15
/* Path to GGZ architecture independent files */
16
16
#undef GGZDATADIR
17
17
 
 
18
/* Path for GGZ architecture dependent files */
 
19
#undef GGZLIBDIR
 
20
 
18
21
/* Define to 1 if you have the <dlfcn.h> header file. */
19
22
#undef HAVE_DLFCN_H
20
23
 
51
54
/* Define to 1 if you have the <unistd.h> header file. */
52
55
#undef HAVE_UNISTD_H
53
56
 
54
 
/* Define to disable debugging */
 
57
/* No debugging code */
55
58
#undef NDEBUG
56
59
 
57
 
/* Name of package */
58
 
#undef PACKAGE
59
 
 
60
60
/* Define to the address where bug reports for this package should be sent. */
61
61
#undef PACKAGE_BUGREPORT
62
62
 
63
63
/* Define to the full name of this package. */
64
64
#undef PACKAGE_NAME
65
65
 
66
 
/* The top-level source directory */
67
 
#undef PACKAGE_SOURCE_DIR
68
 
 
69
66
/* Define to the full name and version of this package. */
70
67
#undef PACKAGE_STRING
71
68
 
87
84
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
88
85
#undef TIME_WITH_SYS_TIME
89
86
 
90
 
/* Version number of package */
91
 
#undef VERSION
92
 
 
93
87
/* Define if it is not provided by sys/wait.h */
94
88
#undef WAIT_ANY
95
89
 
 
90
/* Define to 1 if on AIX 3.
 
91
   System headers sometimes define this.
 
92
   We just want to avoid a redefinition error message.  */
 
93
#ifndef _ALL_SOURCE
 
94
# undef _ALL_SOURCE
 
95
#endif
 
96
 
 
97
/* Use dmalloc for memory debugging */
 
98
#ifdef DEBUG_MEM
 
99
# include <dmalloc.h>
 
100
#endif
 
101
 
 
102
/* Enable GNU extensions on systems that have them.  */
 
103
#ifndef _GNU_SOURCE
 
104
# undef _GNU_SOURCE
 
105
#endif
 
106
 
96
107
/* Define to empty if `const' does not conform to ANSI C. */
97
108
#undef const
98
109