- Updated THANKS file
[tinc] / acconfig.h
1 /* Define to the name name of this package */
2 #undef PACKAGE
3
4 /* Define to the version of the package */
5 #undef VERSION
6
7 /* Define to rpl_malloc if the replacement function should be used.  */
8 #undef malloc
9
10 /* Define to rpl_realloc if the replacement function should be used.  */
11 #undef realloc
12
13 /* This is always defined.  It enables GNU extensions on systems that
14    have them.  */
15 #if !defined(_GNU_SOURCE)
16 # undef _GNU_SOURCE
17 #endif
18
19 #if !defined(__USE_BSD)
20 # undef __USE_BSD
21 #endif
22
23
24 /* Define to 1 if NLS is requested.  */
25 #undef ENABLE_NLS
26
27 /* Define as 1 if you have catgets and don't want to use GNU gettext.  */
28 #undef HAVE_CATGETS
29
30 /* Define as 1 if you have gettext and don't want to use GNU gettext.  */
31 #undef HAVE_GETTEXT
32
33 /* Define if your locale.h file contains LC_MESSAGES.  */
34 #undef HAVE_LC_MESSAGES
35
36 /* Define to 1 if you have the stpcpy function.  */
37 #undef HAVE_STPCPY
38
39
40 /* For getopt */
41 #if HAVE_STDLIB_H
42 # define getopt system_getopt
43 # include <stdlib.h>
44 # undef getopt
45 #endif