acconfig.h revision 92906
1169695Skan/* acconfig.h: Extra commentary for Autoheader
2169695Skan
3169695Skan%%% portions-copyright-cmetz-96
4169695SkanPortions of this software are Copyright 1996-1999 by Craig Metz, All Rights
5169695SkanReserved. The Inner Net License Version 2 applies to these portions of
6169695Skanthe software.
7169695SkanYou should have received a copy of the license with this software. If
8169695Skanyou didn't get a copy, you may request one from <license@inner.net>.
9169695Skan
10169695Skan/* Define if the closedir function returns void instead of int.  */
11169695Skan#undef CLOSEDIR_VOID
12169695Skan
13169695Skan/* Define if you want the FTP daemon to support anonymous logins. */
14169695Skan#undef DOANONYMOUS
15169695Skan
16169695Skan/* The default value of the PATH environment variable */
17169695Skan#undef DEFAULT_PATH
18169695Skan
19169695Skan/* Defined if the file /etc/default/login exists
20169695Skan   (and, presumably, should be looked at by login) */
21169695Skan#undef HAVE_ETC_DEFAULT_LOGIN
22169695Skan
23169695Skan/* Defined to the name of a file that contains a list of files whose
24169695Skan   permissions and ownerships should be changed on login. */
25169695Skan#undef HAVE_LOGIN_PERMFILE
26169695Skan
27169695Skan/* Defined to the name of a file that contains a list of environment
28169695Skan   values that should be set on login. */
29169695Skan#undef HAVE_LOGIN_ENVFILE
30169695Skan
31169695Skan/* Defined if the file /etc/securetty exists
32169695Skan   (and, presumably, should be looked at by login) */
33169695Skan#undef HAVE_SECURETTY
34169695Skan
35169695Skan/* Defined if the file /etc/shadow exists
36169695Skan   (and, presumably, should be looked at for shadow passwords) */
37169695Skan#undef HAVE_ETC_SHADOW
38169695Skan
39169695Skan/* The path to the access file, if we're going to use it */
40169695Skan#undef PATH_ACCESS_FILE
41169695Skan
42169695Skan/* The path to the mail spool, if we know it */
43169695Skan#undef PATH_MAIL
44169695Skan
45169695Skan/* The path to the utmp file, if we know it */
46169695Skan#undef PATH_UTMP_AC
47169695Skan
48169695Skan/* The path to the utmpx file, if we know it */
49169695Skan#undef PATH_UTMPX_AC
50169695Skan
51169695Skan/* The path to the wtmp file, if we know it */
52169695Skan#undef PATH_WTMP_AC
53169695Skan
54169695Skan/* The path to the wtmpx file, if we know it */
55169695Skan#undef PATH_WTMPX_AC
56169695Skan
57169695Skan/* Defined if the system's profile (/etc/profile) displays
58169695Skan   the motd file */
59169695Skan#undef HAVE_MOTD_IN_PROFILE
60169695Skan
61169695Skan/* Defined if the system's profile (/etc/profile) informs the
62169695Skan   user of new mail */
63169695Skan#undef HAVE_MAILCHECK_IN_PROFILE
64169695Skan
65169695Skan/* Define if you have a nonstandard gettimeofday() that takes one argument
66169695Skan   instead of two. */
67169695Skan#undef HAVE_ONE_ARG_GETTIMEOFDAY
68169695Skan
69169695Skan/* Define if the system has the getenv function */
70169695Skan#undef HAVE_GETENV
71169695Skan
72169695Skan/* Define if the system has the setenv function */
73169695Skan#undef HAVE_SETENV
74169695Skan
75169695Skan/* Define if the system has the /var/adm/sulog file */
76169695Skan#undef HAVE_SULOG
77169695Skan
78169695Skan/* Define if the system has the unsetenv function */
79169695Skan#undef HAVE_UNSETENV
80169695Skan
81169695Skan/* Define if the compiler can handle ANSI-style argument lists */
82169695Skan#undef HAVE_ANSIDECL
83169695Skan
84169695Skan/* Define if the compiler can handle ANSI-style prototypes */
85169695Skan#undef HAVE_ANSIPROTO
86169695Skan
87169695Skan/* Define if the system has an ANSI-style printf (returns int instead of char *) */
88169695Skan#undef HAVE_ANSISPRINTF
89169695Skan
90169695Skan/* Define if the compiler can handle ANSI-style variable argument lists */
91169695Skan#undef HAVE_ANSISTDARG
92169695Skan
93169695Skan/* Define if the compiler can handle void argument lists to functions */
94169695Skan#undef HAVE_VOIDARG
95169695Skan
96169695Skan/* Define if the compiler can handle void return "values" from functions */
97169695Skan#undef HAVE_VOIDRET
98169695Skan
99169695Skan/* Define if the compiler can handle void pointers to our liking */
100169695Skan#undef HAVE_VOIDPTR
101169695Skan
102169695Skan/* Define if the /bin/ls command seems to support the -g flag */
103169695Skan#undef HAVE_LS_G_FLAG
104169695Skan
105169695Skan/* Define if there is a ut_pid field in struct utmp */
106169695Skan#undef HAVE_UT_PID
107169695Skan
108169695Skan/* Define if there is a ut_type field in struct utmp */
109169695Skan#undef HAVE_UT_TYPE
110169695Skan
111169695Skan/* Define if there is a ut_user field in struct utmp */
112169695Skan#undef HAVE_UT_USER
113169695Skan
114169695Skan/* Define if there is a ut_name field in struct utmp */
115169695Skan#undef HAVE_UT_NAME
116169695Skan
117169695Skan/* Define if there is a ut_host field in struct utmp */
118169695Skan#undef HAVE_UT_HOST
119169695Skan
120169695Skan/* Define if there is a ut_id field in struct utmp */
121169695Skan#undef HAVE_UT_ID
122169695Skan
123169695Skan/* Define if there is a ut_syslen field in struct utmp */
124169695Skan#undef HAVE_UT_SYSLEN
125169695Skan
126169695Skan/* Define if there is a utx_syslen field in struct utmpx */
127169695Skan#undef HAVE_UTX_SYSLEN
128169695Skan
129169695Skan/* Define if the system has getutline() */
130169695Skan#undef HAVE_GETUTLINE
131169695Skan
132169695Skan/* Defined if the system has SunOS C2 security shadow passwords */
133169695Skan#undef HAVE_SUNOS_C2_SHADOW
134169695Skan
135169695Skan/* Defined if you want to disable utmp support */
136169695Skan#undef DISABLE_UTMP
137169695Skan
138169695Skan/* Defined if you want to disable wtmp support */
139169695Skan#undef DISABLE_WTMP
140169695Skan
141169695Skan/* Defined if you want to allow users to override the insecure checks */
142169695Skan#undef INSECURE_OVERRIDE
143169695Skan
144169695Skan/* Defined to the default hash value, always defined */
145169695Skan#undef MDX
146169695Skan
147169695Skan/* Defined if new-style prompts are to be used */
148169695Skan#undef NEW_PROMPTS
149169695Skan
150169695Skan/* Defined to the path of the OPIE lock directory */
151169695Skan#undef OPIE_LOCK_DIR
152169695Skan
153169695Skan/* Defined if users are to be asked to re-type secret pass phrases */
154169695Skan#undef RETYPE
155169695Skan
156169695Skan/* Defined if su should not switch to disabled accounts */
157169695Skan#undef SU_STAR_CHECK
158169695Skan
159169695Skan/* Defined if user locking is to be used */
160169695Skan#undef USER_LOCKING
161169695Skan
162169695Skan/* Defined if opieauto is to be used */
163169695Skan#undef OPIEAUTO
164169695Skan
165169695Skan/* Define if you have the atexit function.  */
166169695Skan#undef HAVE_ATEXIT
167169695Skan
168169695Skan/* Define if you have the endutent function.  */
169169695Skan#undef HAVE_ENDUTENT
170169695Skan
171169695Skan/* Define if you have the initgroups function.  */
172169695Skan#undef HAVE_INITGROUPS
173169695Skan
174169695Skan/* Define if you have the memcmp function.  */
175169695Skan#undef HAVE_MEMCMP
176
177/* Define if you have the memcpy function.  */
178#undef HAVE_MEMCPY
179
180/* Define if you have the memset function.  */
181#undef HAVE_MEMSET
182
183/* Define if you have the getcwd function.  */
184#undef HAVE_GETCWD
185
186/* Define if you have the getenv function.  */
187#undef HAVE_GETENV
188
189/* Define if you have the getutline function.  */
190#undef HAVE_GETUTLINE
191
192/* Define if you have the pututline function.  */
193#undef HAVE_PUTUTLINE
194
195/* Define if you have the setenv function.  */
196#undef HAVE_SETENV
197
198/* Define if you have the setegid function.  */
199#undef HAVE_SETEGID
200
201/* Define if you have the seteuid function.  */
202#undef HAVE_SETEUID
203
204/* Define if you have the setutent function.  */
205#undef HAVE_SETUTENT
206
207/* Define if you have the sigprocmask function.  */
208#undef HAVE_SIGPROCMASK
209
210/* Define if you have the strchr function.  */
211#undef HAVE_STRCHR
212
213/* Define if you have the strrchr function.  */
214#undef HAVE_STRRCHR
215
216/* Define if you have the strtoul function.  */
217#undef HAVE_STRTOUL
218
219/* Define if you have the sysconf function.  */
220#undef HAVE_SYSCONF
221
222/* Define if you have the uname function.  */
223#undef HAVE_UNAME
224
225/* Define if you have the unsetenv function.  */
226#undef HAVE_UNSETENV
227