blob: 9e78156f29b3c594b49cc071ce683165820a056c (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* acconfig.h
This file is in the public domain.
Descriptive text for the C preprocessor macros that
the distributed Autoconf macros can define.
No software package will use all of them; autoheader copies the ones
your configure.in uses into your configuration header file templates.
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). Although this order
can split up related entries, it makes it easier to check whether
a given entry is in the file.
Leave the following blank line there!! Autoheader needs it. */
^L
/* Define to the name of the distribution. */
#undef PACKAGE
/* Define to the version of the distribution. */
#undef VERSION
/* Define to 1 if ANSI function prototypes are usable. */
#undef PROTOTYPES
/* Define to 1 if NLS is requested. */
#undef ENABLE_NLS
/* Define as 1 if you have catgets and don't want to use GNU gettext. */
#undef HAVE_CATGETS
/* Define as 1 if you have gettext and don't want to use GNU gettext. */
#undef HAVE_GETTEXT
/* Define if your locale.h file contains LC_MESSAGES. */
#undef HAVE_LC_MESSAGES
/* Define to 1 if you have the stpcpy function. */
#undef HAVE_STPCPY
/* Define as 1 if you have inet_aton() */
#undef HAVE_INET_ATON
/* Define as 1 if you have mntctl() (only aix?) */
#undef HAVE_MNTCTL
/* Define as 1 if your system provides realpath() */
#undef HAVE_REALPATH
/* Define as 1 if <netdb.h> defines h_errno */
#undef HAVE_HERRNO
/* Define as 1 if <sys/stat.h> defines S_ISLNK */
#undef HAVE_S_ISLNK
/* Define as 1 if <sys/stat.h> defines S_IFSOCK */
#undef HAVE_S_IFSOCK
/* Define as 1 if <sys/stat.h> defines S_ISSOCK */
#undef HAVE_S_ISSOCK
/* Define as 1 if we need timezone */
#undef NEED_TIMEZONE
/* Define as 1 if we need myrealloc */
#undef NEED_MYREALLOC
/* Define as one if we need to include <strings.h> (along with <string.h>) */
#undef NEED_STRINGS_H
/* Define as 1 if you have getmntinfo_r() (only osf?) */
#undef HAVE_GETMNTINFO_R
/* Define as 1 if you have "struct mnttab" (only sco?) */
#undef HAVE_STRUCT_MNTTAB
/* Define as 1 if you have lchown() */
#undef HAVE_LCHOWN
/* Define as 1 if chown() follows symlinks and you don't have lchown() */
#undef CHOWN_FOLLOWS_SYMLINK
/* Define if the patch call you'll be using is 2.1 or older */
#undef HAVE_OLDPATCH_21
/* A full path to a program, possibly with arguments, that will create a
directory and all necessary parent directories, ala `mkdir -p' */
#undef MKDIR_P
/* define this to be whatever root's primary group is, in double quotes */
#undef ROOT_GROUP
^L
/* Leave that blank line there!! Autoheader needs it.
If you're adding to this file, keep in mind:
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). */
|