blob: 94083c71cf51bf466bfff75ca3ed928a4ae32419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* acconfig.h -- hand-written definitions to eventually go into config.h */
/* Define this to enable trace code */
#undef DO_RS_TRACE
/* Version of the libtool interface. */
#define RS_LIBVERSION "unknown"
/* Define this if your sockaddr structure contains sin_len */
#undef HAVE_SOCK_SIN_LEN
/* Define this if there is a connect(2) call */
#undef HAVE_CONNECT
/* Define if we have an off64_t largefile type */
#undef HAVE_OFF64_T
/* Ask for large file support (LFS). Should always be on, even if it
* achieves nothing. */
#undef _LARGEFILE_SOURCE
#undef _LARGEFILE64_SOURCE
/* How many bits would you like to have in an off_t? */
#undef _FILE_OFFSET_BITS
/* Define to include GNU C library extensions. */
#undef _GNU_SOURCE
/* Define to get i18n support */
#undef ENABLE_NLS
/* Define if you want the suboptimal X/Open catgets implementation */
#undef HAVE_CATGETS
/* Define if you want the nice new GNU and Uniforum gettext system */
#undef HAVE_GETTEXT
/* Define if your system has the LC_MESSAGES locale category */
#undef HAVE_LC_MESSAGES
/* Define if you have stpcpy (copy a string and return a pointer to
* the end of the result.) */
#undef HAVE_STPCPY
/* GNU extension of saving argv[0] to program_invocation_short_name */
#undef HAVE_PROGRAM_INVOCATION_NAME
/* Canonical GNU hostname */
#define RS_CANONICAL_HOST "unknown"
/* Define to a replacement type if intmax_t is not a builtin, or in
sys/types.h or stdlib.h or stddef.h */
#undef intmax_t
/* end of acconfig.h */
|