xref: /minix3/crypto/external/bsd/heimdal/dist/include/config.h.w32 (revision ebfedea0ce5bbe81e252ddf32d732e40fb633fae)
1*ebfedea0SLionel Sambuc/***********************************************************************
2*ebfedea0SLionel Sambuc * Copyright (c) 2009, Secure Endpoints Inc.
3*ebfedea0SLionel Sambuc * All rights reserved.
4*ebfedea0SLionel Sambuc *
5*ebfedea0SLionel Sambuc * Redistribution and use in source and binary forms, with or without
6*ebfedea0SLionel Sambuc * modification, are permitted provided that the following conditions
7*ebfedea0SLionel Sambuc * are met:
8*ebfedea0SLionel Sambuc *
9*ebfedea0SLionel Sambuc * - Redistributions of source code must retain the above copyright
10*ebfedea0SLionel Sambuc *   notice, this list of conditions and the following disclaimer.
11*ebfedea0SLionel Sambuc *
12*ebfedea0SLionel Sambuc * - Redistributions in binary form must reproduce the above copyright
13*ebfedea0SLionel Sambuc *   notice, this list of conditions and the following disclaimer in
14*ebfedea0SLionel Sambuc *   the documentation and/or other materials provided with the
15*ebfedea0SLionel Sambuc *   distribution.
16*ebfedea0SLionel Sambuc *
17*ebfedea0SLionel Sambuc * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*ebfedea0SLionel Sambuc * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*ebfedea0SLionel Sambuc * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20*ebfedea0SLionel Sambuc * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21*ebfedea0SLionel Sambuc * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22*ebfedea0SLionel Sambuc * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23*ebfedea0SLionel Sambuc * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24*ebfedea0SLionel Sambuc * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25*ebfedea0SLionel Sambuc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26*ebfedea0SLionel Sambuc * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27*ebfedea0SLionel Sambuc * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28*ebfedea0SLionel Sambuc * OF THE POSSIBILITY OF SUCH DAMAGE.
29*ebfedea0SLionel Sambuc *
30*ebfedea0SLionel Sambuc **********************************************************************/
31*ebfedea0SLionel Sambuc
32*ebfedea0SLionel Sambuc#ifndef __CONFIG_H__
33*ebfedea0SLionel Sambuc#define __CONFIG_H__
34*ebfedea0SLionel Sambuc
35*ebfedea0SLionel Sambuc#ifndef RCSID
36*ebfedea0SLionel Sambuc#define RCSID(msg) \
37*ebfedea0SLionel Sambucstatic const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg }
38*ebfedea0SLionel Sambuc#endif
39*ebfedea0SLionel Sambuc
40*ebfedea0SLionel Sambuc/* If this file is being included by a resource script, don't bother
41*ebfedea0SLionel Sambuc   with anything other than the version macros. */
42*ebfedea0SLionel Sambuc#ifndef RC_INVOKED
43*ebfedea0SLionel Sambuc
44*ebfedea0SLionel Sambuc#define MaxHostNameLen (64+4)
45*ebfedea0SLionel Sambuc#define MaxPathLen MAX_PATH
46*ebfedea0SLionel Sambuc
47*ebfedea0SLionel Sambuc#ifndef MAXHOSTNAMELEN
48*ebfedea0SLionel Sambuc#define MAXHOSTNAMELEN MaxHostNameLen
49*ebfedea0SLionel Sambuc#endif
50*ebfedea0SLionel Sambuc#ifndef MAXPATHLEN
51*ebfedea0SLionel Sambuc#define MAXPATHLEN MaxPathLen
52*ebfedea0SLionel Sambuc#endif
53*ebfedea0SLionel Sambuc
54*ebfedea0SLionel Sambuc#ifdef BUILD_KRB5_LIB
55*ebfedea0SLionel Sambuc#ifndef KRB5_LIB
56*ebfedea0SLionel Sambuc#ifdef _WIN32
57*ebfedea0SLionel Sambuc#define KRB5_LIB_FUNCTION
58*ebfedea0SLionel Sambuc#define KRB5_LIB_CALL     __stdcall
59*ebfedea0SLionel Sambuc#define KRB5_LIB_VARIABLE
60*ebfedea0SLionel Sambuc#else
61*ebfedea0SLionel Sambuc#define KRB5_LIB_FUNCTION
62*ebfedea0SLionel Sambuc#define KRB5_LIB_CALL
63*ebfedea0SLionel Sambuc#define KRB5_LIB_VARIABLE
64*ebfedea0SLionel Sambuc#endif
65*ebfedea0SLionel Sambuc#endif
66*ebfedea0SLionel Sambuc#endif
67*ebfedea0SLionel Sambuc
68*ebfedea0SLionel Sambuc
69*ebfedea0SLionel Sambuc#ifdef BUILD_ROKEN_LIB
70*ebfedea0SLionel Sambuc#ifndef ROKEN_LIB
71*ebfedea0SLionel Sambuc#ifdef _WIN32
72*ebfedea0SLionel Sambuc#define ROKEN_LIB_FUNCTION
73*ebfedea0SLionel Sambuc#define ROKEN_LIB_CALL     __cdecl
74*ebfedea0SLionel Sambuc#define ROKEN_LIB_VARIABLE
75*ebfedea0SLionel Sambuc#else
76*ebfedea0SLionel Sambuc#define ROKEN_LIB_FUNCTION
77*ebfedea0SLionel Sambuc#define ROKEN_LIB_CALL
78*ebfedea0SLionel Sambuc#define ROKEN_LIB_VARIABLE
79*ebfedea0SLionel Sambuc#endif
80*ebfedea0SLionel Sambuc#endif
81*ebfedea0SLionel Sambuc#endif
82*ebfedea0SLionel Sambuc
83*ebfedea0SLionel Sambuc
84*ebfedea0SLionel Sambuc#ifdef BUILD_GSSAPI_LIB
85*ebfedea0SLionel Sambuc#ifndef GSSAPI_LIB
86*ebfedea0SLionel Sambuc#ifdef _WIN32
87*ebfedea0SLionel Sambuc#define GSSAPI_LIB_FUNCTION
88*ebfedea0SLionel Sambuc#define GSSAPI_LIB_CALL     __stdcall
89*ebfedea0SLionel Sambuc#define GSSAPI_LIB_VARIABLE
90*ebfedea0SLionel Sambuc#else
91*ebfedea0SLionel Sambuc#define GSSAPI_LIB_FUNCTION
92*ebfedea0SLionel Sambuc#define GSSAPI_LIB_CALL
93*ebfedea0SLionel Sambuc#define GSSAPI_LIB_VARIABLE
94*ebfedea0SLionel Sambuc#endif
95*ebfedea0SLionel Sambuc#endif
96*ebfedea0SLionel Sambuc#endif
97*ebfedea0SLionel Sambuc
98*ebfedea0SLionel Sambuc/* Feature macros */
99*ebfedea0SLionel Sambuc
100*ebfedea0SLionel Sambuc@FEATURE_DEFS@
101*ebfedea0SLionel Sambuc
102*ebfedea0SLionel Sambuc/* Define is backslashes act as path name delimiters */
103*ebfedea0SLionel Sambuc#define BACKSLASH_PATH_DELIM 1
104*ebfedea0SLionel Sambuc
105*ebfedea0SLionel Sambuc/* Path separator character */
106*ebfedea0SLionel Sambuc#define PATH_SEP ";"
107*ebfedea0SLionel Sambuc
108*ebfedea0SLionel Sambuc/* Define if you want to use DES encryption in telnet. */
109*ebfedea0SLionel Sambuc#define DES_ENCRYPTION 1
110*ebfedea0SLionel Sambuc
111*ebfedea0SLionel Sambuc/* Define this if you want support for broken ENV_{VAR,VAL} telnets. */
112*ebfedea0SLionel Sambuc/* #undef ENV_HACK */
113*ebfedea0SLionel Sambuc
114*ebfedea0SLionel Sambuc/* define if prototype of gethostbyaddr is compatible with struct hostent
115*ebfedea0SLionel Sambuc   *gethostbyaddr(const void *, size_t, int) */
116*ebfedea0SLionel Sambuc/* #undef GETHOSTBYADDR_PROTO_COMPATIBLE */
117*ebfedea0SLionel Sambuc
118*ebfedea0SLionel Sambuc/* define if prototype of gethostbyname is compatible with struct hostent
119*ebfedea0SLionel Sambuc   *gethostbyname(const char *) */
120*ebfedea0SLionel Sambuc#define GETHOSTBYNAME_PROTO_COMPATIBLE 1
121*ebfedea0SLionel Sambuc
122*ebfedea0SLionel Sambuc/* define if prototype of getservbyname is compatible with struct servent
123*ebfedea0SLionel Sambuc   *getservbyname(const char *, const char *) */
124*ebfedea0SLionel Sambuc#define GETSERVBYNAME_PROTO_COMPATIBLE 1
125*ebfedea0SLionel Sambuc
126*ebfedea0SLionel Sambuc/* define if prototype of getsockname is compatible with int getsockname(int,
127*ebfedea0SLionel Sambuc   struct sockaddr*, socklen_t*) */
128*ebfedea0SLionel Sambuc/* #undef GETSOCKNAME_PROTO_COMPATIBLE */
129*ebfedea0SLionel Sambuc
130*ebfedea0SLionel Sambuc/* Define if you have the `altzone' variable. */
131*ebfedea0SLionel Sambuc/* #undef HAVE_ALTZONE */
132*ebfedea0SLionel Sambuc
133*ebfedea0SLionel Sambuc/* Define to 1 if you have the `arc4random' function. */
134*ebfedea0SLionel Sambuc/* #undef HAVE_ARC4RANDOM */
135*ebfedea0SLionel Sambuc
136*ebfedea0SLionel Sambuc/* Define to 1 if you have the <arpa/ftp.h> header file. */
137*ebfedea0SLionel Sambuc/* #undef HAVE_ARPA_FTP_H  */
138*ebfedea0SLionel Sambuc
139*ebfedea0SLionel Sambuc/* Define to 1 if you have the <arpa/inet.h> header file. */
140*ebfedea0SLionel Sambuc/* #undef HAVE_ARPA_INET_H  */
141*ebfedea0SLionel Sambuc
142*ebfedea0SLionel Sambuc/* Define to 1 if you have the <arpa/nameser.h> header file. */
143*ebfedea0SLionel Sambuc/* #undef HAVE_ARPA_NAMESER_H */
144*ebfedea0SLionel Sambuc
145*ebfedea0SLionel Sambuc/* Define to 1 if you have the <arpa/telnet.h> header file. */
146*ebfedea0SLionel Sambuc/* #undef HAVE_ARPA_TELNET_H  */
147*ebfedea0SLionel Sambuc
148*ebfedea0SLionel Sambuc/* Define to 1 if you have the <asl.h> header file. */
149*ebfedea0SLionel Sambuc/* #undef HAVE_ASL_H */
150*ebfedea0SLionel Sambuc
151*ebfedea0SLionel Sambuc/* Define to 1 if you have the `asnprintf' function. */
152*ebfedea0SLionel Sambuc/* #undef HAVE_ASNPRINTF */
153*ebfedea0SLionel Sambuc
154*ebfedea0SLionel Sambuc/* Define to 1 if you have the `asprintf' function. */
155*ebfedea0SLionel Sambuc/* #undef HAVE_ASPRINTF */
156*ebfedea0SLionel Sambuc
157*ebfedea0SLionel Sambuc/* Define to 1 if you have the `atexit' function. */
158*ebfedea0SLionel Sambuc#define HAVE_ATEXIT 1
159*ebfedea0SLionel Sambuc
160*ebfedea0SLionel Sambuc/* Define to 1 if you have the <bind/bitypes.h> header file. */
161*ebfedea0SLionel Sambuc/* #undef HAVE_BIND_BITYPES_H */
162*ebfedea0SLionel Sambuc
163*ebfedea0SLionel Sambuc/* Define to 1 if you have the <bsdsetjmp.h> header file. */
164*ebfedea0SLionel Sambuc/* #undef HAVE_BSDSETJMP_H */
165*ebfedea0SLionel Sambuc
166*ebfedea0SLionel Sambuc/* Define to 1 if you have the `bswap16' function. */
167*ebfedea0SLionel Sambuc/* #undef HAVE_BSWAP16 */
168*ebfedea0SLionel Sambuc
169*ebfedea0SLionel Sambuc/* Define to 1 if you have the `bswap32' function. */
170*ebfedea0SLionel Sambuc/* #undef HAVE_BSWAP32 */
171*ebfedea0SLionel Sambuc
172*ebfedea0SLionel Sambuc/* Define to 1 if you have the <capability.h> header file. */
173*ebfedea0SLionel Sambuc/* #undef HAVE_CAPABILITY_H */
174*ebfedea0SLionel Sambuc
175*ebfedea0SLionel Sambuc/* Define to 1 if you have the `cap_set_proc' function. */
176*ebfedea0SLionel Sambuc/* #undef HAVE_CAP_SET_PROC */
177*ebfedea0SLionel Sambuc
178*ebfedea0SLionel Sambuc/* Define to 1 if you have the `cgetent' function. */
179*ebfedea0SLionel Sambuc/* #undef HAVE_CGETENT */
180*ebfedea0SLionel Sambuc
181*ebfedea0SLionel Sambuc/* Define if the system defines 'CHAR' type */
182*ebfedea0SLionel Sambuc#define HAVE_CHAR 1
183*ebfedea0SLionel Sambuc
184*ebfedea0SLionel Sambuc/* Define if you have the function `chown'. */
185*ebfedea0SLionel Sambuc#define HAVE_CHOWN 1
186*ebfedea0SLionel Sambuc
187*ebfedea0SLionel Sambuc/* Define if you have the function `closefrom'. */
188*ebfedea0SLionel Sambuc/* #undef HAVE_CLOSEFROM */
189*ebfedea0SLionel Sambuc
190*ebfedea0SLionel Sambuc/* Define to 1 if you have the <config.h> header file. */
191*ebfedea0SLionel Sambuc/* #undef HAVE_CONFIG_H */
192*ebfedea0SLionel Sambuc
193*ebfedea0SLionel Sambuc/* Define if <conio.h> is present on the system is should be used for
194*ebfedea0SLionel Sambuc   handling low level console operations. */
195*ebfedea0SLionel Sambuc#define HAVE_CONIO_H
196*ebfedea0SLionel Sambuc
197*ebfedea0SLionel Sambuc/* Define if you have the function `copyhostent'. */
198*ebfedea0SLionel Sambuc/* #undef HAVE_COPYHOSTENT */
199*ebfedea0SLionel Sambuc
200*ebfedea0SLionel Sambuc/* Define to 1 if you have the `crypt' function. */
201*ebfedea0SLionel Sambuc/* #undef HAVE_CRYPT */
202*ebfedea0SLionel Sambuc
203*ebfedea0SLionel Sambuc/* Define to 1 if you have the <crypt.h> header file. */
204*ebfedea0SLionel Sambuc/* #ndef HAVE_CRYPT_H  */
205*ebfedea0SLionel Sambuc
206*ebfedea0SLionel Sambuc/* Define to 1 if you have the <curses.h> header file. */
207*ebfedea0SLionel Sambuc/* #undef HAVE_CURSES_H */
208*ebfedea0SLionel Sambuc
209*ebfedea0SLionel Sambuc/* Define if you have the function `daemon'. */
210*ebfedea0SLionel Sambuc/* #define HAVE_DAEMON 1 */
211*ebfedea0SLionel Sambuc
212*ebfedea0SLionel Sambuc/* define if you have a berkeley db1/2 library */
213*ebfedea0SLionel Sambuc/* #undef HAVE_DB1 */
214*ebfedea0SLionel Sambuc
215*ebfedea0SLionel Sambuc/* define if you have a berkeley db3/4 library */
216*ebfedea0SLionel Sambuc/* #define HAVE_DB3 1 */
217*ebfedea0SLionel Sambuc
218*ebfedea0SLionel Sambuc/* Define to 1 if you have the <db3/db.h> header file. */
219*ebfedea0SLionel Sambuc/* #undef HAVE_DB3_DB_H */
220*ebfedea0SLionel Sambuc
221*ebfedea0SLionel Sambuc/* Define to 1 if you have the <db4/db.h> header file. */
222*ebfedea0SLionel Sambuc/* #define HAVE_DB4_DB_H 1 */
223*ebfedea0SLionel Sambuc
224*ebfedea0SLionel Sambuc/* Define to 1 if you have the `dbm_firstkey' function. */
225*ebfedea0SLionel Sambuc/* #define HAVE_DBM_FIRSTKEY 1 */
226*ebfedea0SLionel Sambuc
227*ebfedea0SLionel Sambuc/* Define to 1 if you have the <dbm.h> header file. */
228*ebfedea0SLionel Sambuc/* #undef HAVE_DBM_H */
229*ebfedea0SLionel Sambuc
230*ebfedea0SLionel Sambuc/* Define to 1 if you have the `dbopen' function. */
231*ebfedea0SLionel Sambuc/* #undef HAVE_DBOPEN */
232*ebfedea0SLionel Sambuc
233*ebfedea0SLionel Sambuc/* Define to 1 if you have the <db_185.h> header file. */
234*ebfedea0SLionel Sambuc/* #define HAVE_DB_185_H 1 */
235*ebfedea0SLionel Sambuc
236*ebfedea0SLionel Sambuc/* Define to 1 if you have the `db_create' function. */
237*ebfedea0SLionel Sambuc/* #define HAVE_DB_CREATE 1 */
238*ebfedea0SLionel Sambuc
239*ebfedea0SLionel Sambuc/* Define to 1 if you have the <db.h> header file. */
240*ebfedea0SLionel Sambuc/* #define HAVE_DB_H 1 */
241*ebfedea0SLionel Sambuc
242*ebfedea0SLionel Sambuc/* define if you have ndbm compat in db */
243*ebfedea0SLionel Sambuc/* #define HAVE_DB_NDBM 1 */
244*ebfedea0SLionel Sambuc
245*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `altzone', and to 0 if you
246*ebfedea0SLionel Sambuc   don't. */
247*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_ALTZONE */
248*ebfedea0SLionel Sambuc
249*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `environ', and to 0 if you
250*ebfedea0SLionel Sambuc   don't. */
251*ebfedea0SLionel Sambuc#define HAVE_DECL_ENVIRON 1
252*ebfedea0SLionel Sambuc
253*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `h_errlist', and to 0 if you
254*ebfedea0SLionel Sambuc   don't. */
255*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_H_ERRLIST */
256*ebfedea0SLionel Sambuc
257*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `h_errno', and to 0 if you
258*ebfedea0SLionel Sambuc   don't. */
259*ebfedea0SLionel Sambuc#define HAVE_DECL_H_ERRNO 1
260*ebfedea0SLionel Sambuc
261*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `h_nerr', and to 0 if you don't.
262*ebfedea0SLionel Sambuc   */
263*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_H_NERR */
264*ebfedea0SLionel Sambuc
265*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `optarg', and to 0 if you don't.
266*ebfedea0SLionel Sambuc   */
267*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_OPTARG */
268*ebfedea0SLionel Sambuc
269*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `opterr', and to 0 if you don't.
270*ebfedea0SLionel Sambuc   */
271*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_OPTERR */
272*ebfedea0SLionel Sambuc
273*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `optind', and to 0 if you don't.
274*ebfedea0SLionel Sambuc   */
275*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_OPTIND */
276*ebfedea0SLionel Sambuc
277*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `optopt', and to 0 if you don't.
278*ebfedea0SLionel Sambuc   */
279*ebfedea0SLionel Sambuc/* #undef HAVE_DECL_OPTOPT */
280*ebfedea0SLionel Sambuc
281*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `timezone', and to 0 if you
282*ebfedea0SLionel Sambuc   don't. */
283*ebfedea0SLionel Sambuc#define HAVE_DECL_TIMEZONE 1
284*ebfedea0SLionel Sambuc
285*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `_res', and to 0 if you don't.
286*ebfedea0SLionel Sambuc   */
287*ebfedea0SLionel Sambuc/* #undef HAVE_DECL__RES */
288*ebfedea0SLionel Sambuc
289*ebfedea0SLionel Sambuc/* Define to 1 if you have the declaration of `__progname', and to 0 if you
290*ebfedea0SLionel Sambuc   don't. */
291*ebfedea0SLionel Sambuc#define HAVE_DECL___PROGNAME 0
292*ebfedea0SLionel Sambuc
293*ebfedea0SLionel Sambuc/* Define to 1 if you have the <dirent.h> header file. */
294*ebfedea0SLionel Sambuc/* MSVC doesn't provide a <dirent.h>, but we implement it in
295*ebfedea0SLionel Sambuc   lib/roken. */
296*ebfedea0SLionel Sambuc#define HAVE_DIRENT_H 1
297*ebfedea0SLionel Sambuc
298*ebfedea0SLionel Sambuc/* Define to 1 if you have the <dlfcn.h> header file. */
299*ebfedea0SLionel Sambuc/* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */
300*ebfedea0SLionel Sambuc#define HAVE_DLFCN_H 1
301*ebfedea0SLionel Sambuc
302*ebfedea0SLionel Sambuc/* Define to 1 if you have the `dlopen' function. */
303*ebfedea0SLionel Sambuc/* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */
304*ebfedea0SLionel Sambuc#define HAVE_DLOPEN 1
305*ebfedea0SLionel Sambuc
306*ebfedea0SLionel Sambuc/* Define to 1 if you have the `dn_expand' function. */
307*ebfedea0SLionel Sambuc/* #undef HAVE_DN_EXPAND */
308*ebfedea0SLionel Sambuc
309*ebfedea0SLionel Sambuc/* Define to 1 if you have the `door_create' function. */
310*ebfedea0SLionel Sambuc/* #undef HAVE_DOOR_CREATE */
311*ebfedea0SLionel Sambuc
312*ebfedea0SLionel Sambuc/* Define if you have the function `ecalloc'. */
313*ebfedea0SLionel Sambuc/* #undef HAVE_ECALLOC */
314*ebfedea0SLionel Sambuc
315*ebfedea0SLionel Sambuc/* Define to 1 if you have the `el_init' function. */
316*ebfedea0SLionel Sambuc/* #undef HAVE_EL_INIT */
317*ebfedea0SLionel Sambuc
318*ebfedea0SLionel Sambuc/* Define if you have the function `emalloc'. */
319*ebfedea0SLionel Sambuc/* #undef HAVE_EMALLOC */
320*ebfedea0SLionel Sambuc
321*ebfedea0SLionel Sambuc/* Define if you have the function `erealloc'. */
322*ebfedea0SLionel Sambuc/* #undef HAVE_EREALLOC */
323*ebfedea0SLionel Sambuc
324*ebfedea0SLionel Sambuc/* Define if you have the function `err'. */
325*ebfedea0SLionel Sambuc#define HAVE_ERR 1
326*ebfedea0SLionel Sambuc
327*ebfedea0SLionel Sambuc/* Define to 1 if you have the <errno.h> header file. */
328*ebfedea0SLionel Sambuc#define HAVE_ERRNO_H 1
329*ebfedea0SLionel Sambuc
330*ebfedea0SLionel Sambuc/* Define if you have the function `errx'. */
331*ebfedea0SLionel Sambuc#define HAVE_ERRX 1
332*ebfedea0SLionel Sambuc
333*ebfedea0SLionel Sambuc/* Define to 1 if you have the <err.h> header file. */
334*ebfedea0SLionel Sambuc#define HAVE_ERR_H 1
335*ebfedea0SLionel Sambuc
336*ebfedea0SLionel Sambuc/* Define if you have the function `estrdup'. */
337*ebfedea0SLionel Sambuc/* #undef HAVE_ESTRDUP */
338*ebfedea0SLionel Sambuc
339*ebfedea0SLionel Sambuc/* Define if you have the function `fchown'. */
340*ebfedea0SLionel Sambuc/* #undef HAVE_FCHOWN */
341*ebfedea0SLionel Sambuc
342*ebfedea0SLionel Sambuc/* Define to 1 if you have the `fcntl' function. */
343*ebfedea0SLionel Sambuc/* #undef HAVE_FCNTL */
344*ebfedea0SLionel Sambuc
345*ebfedea0SLionel Sambuc/* Define to 1 if you have the <fcntl.h> header file. */
346*ebfedea0SLionel Sambuc#define HAVE_FCNTL_H 1
347*ebfedea0SLionel Sambuc
348*ebfedea0SLionel Sambuc/* Define if you have the function `flock'. */
349*ebfedea0SLionel Sambuc/* #undef HAVE_FLOCK */
350*ebfedea0SLionel Sambuc
351*ebfedea0SLionel Sambuc/* Define if you have the function `fnmatch'. */
352*ebfedea0SLionel Sambuc/* #undef HAVE_FNMATCH */
353*ebfedea0SLionel Sambuc
354*ebfedea0SLionel Sambuc/* Define to 1 if you have the <fnmatch.h> header file. */
355*ebfedea0SLionel Sambuc/* #undef HAVE_FNMATCH_H */
356*ebfedea0SLionel Sambuc
357*ebfedea0SLionel Sambuc/* Define if el_init takes four arguments. */
358*ebfedea0SLionel Sambuc/* #undef HAVE_FOUR_VALUED_EL_INIT */
359*ebfedea0SLionel Sambuc
360*ebfedea0SLionel Sambuc/* Have -framework Security */
361*ebfedea0SLionel Sambuc/* #undef HAVE_FRAMEWORK_SECURITY */
362*ebfedea0SLionel Sambuc
363*ebfedea0SLionel Sambuc/* Define to 1 if you have the `freeaddrinfo' function. */
364*ebfedea0SLionel Sambuc#define HAVE_FREEADDRINFO 1
365*ebfedea0SLionel Sambuc
366*ebfedea0SLionel Sambuc/* Define if you have the function `freehostent'. */
367*ebfedea0SLionel Sambuc/* #undef HAVE_FREEHOSTENT */
368*ebfedea0SLionel Sambuc
369*ebfedea0SLionel Sambuc/* Define to 1 if you have the `gai_strerror' function. */
370*ebfedea0SLionel Sambuc#define HAVE_GAI_STRERROR 1
371*ebfedea0SLionel Sambuc
372*ebfedea0SLionel Sambuc/* Define to 1 if you have the <gdbm/ndbm.h> header file. */
373*ebfedea0SLionel Sambuc/* #undef HAVE_GDBM_NDBM_H */
374*ebfedea0SLionel Sambuc
375*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getaddrinfo' function. */
376*ebfedea0SLionel Sambuc#define HAVE_GETADDRINFO 1
377*ebfedea0SLionel Sambuc
378*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getconfattr' function. */
379*ebfedea0SLionel Sambuc/* #undef HAVE_GETCONFATTR */
380*ebfedea0SLionel Sambuc
381*ebfedea0SLionel Sambuc/* Define if you have the function `getcwd'. */
382*ebfedea0SLionel Sambuc#define HAVE_GETCWD 1
383*ebfedea0SLionel Sambuc
384*ebfedea0SLionel Sambuc/* Define if you have the function `getdtablesize'. */
385*ebfedea0SLionel Sambuc/* #define HAVE_GETDTABLESIZE 1 */
386*ebfedea0SLionel Sambuc
387*ebfedea0SLionel Sambuc/* Define if you have the function `getegid'. */
388*ebfedea0SLionel Sambuc/* #define HAVE_GETEGID 1 */
389*ebfedea0SLionel Sambuc
390*ebfedea0SLionel Sambuc/* Define if you have the function `geteuid'. */
391*ebfedea0SLionel Sambuc/* #define HAVE_GETEUID 1 */
392*ebfedea0SLionel Sambuc
393*ebfedea0SLionel Sambuc/* Define if you have the function `getgid'. */
394*ebfedea0SLionel Sambuc/* #define HAVE_GETGID 1 */
395*ebfedea0SLionel Sambuc
396*ebfedea0SLionel Sambuc/* Define to 1 if you have the `gethostbyname' function. */
397*ebfedea0SLionel Sambuc#define HAVE_GETHOSTBYNAME 1
398*ebfedea0SLionel Sambuc
399*ebfedea0SLionel Sambuc/* Define to 1 if you have the `gethostbyname2' function. */
400*ebfedea0SLionel Sambuc/* #undef HAVE_GETHOSTBYNAME2 */
401*ebfedea0SLionel Sambuc
402*ebfedea0SLionel Sambuc/* Define if you have the function `gethostname'. */
403*ebfedea0SLionel Sambuc#define HAVE_GETHOSTNAME 1
404*ebfedea0SLionel Sambuc
405*ebfedea0SLionel Sambuc/* Define if you have the function `getifaddrs'. */
406*ebfedea0SLionel Sambuc/* #undef HAVE_GETIFADDRS */
407*ebfedea0SLionel Sambuc
408*ebfedea0SLionel Sambuc/* Define if you have the function `getipnodebyaddr'. */
409*ebfedea0SLionel Sambuc/* #undef HAVE_GETIPNODEBYADDR */
410*ebfedea0SLionel Sambuc
411*ebfedea0SLionel Sambuc/* Define if you have the function `getipnodebyname'. */
412*ebfedea0SLionel Sambuc/* #undef HAVE_GETIPNODEBYNAME */
413*ebfedea0SLionel Sambuc
414*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getlogin' function. */
415*ebfedea0SLionel Sambuc/* #define HAVE_GETLOGIN 1 */
416*ebfedea0SLionel Sambuc
417*ebfedea0SLionel Sambuc/* Define if you have a working getmsg. */
418*ebfedea0SLionel Sambuc/* #undef HAVE_GETMSG */
419*ebfedea0SLionel Sambuc
420*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getnameinfo' function. */
421*ebfedea0SLionel Sambuc#define HAVE_GETNAMEINFO 1
422*ebfedea0SLionel Sambuc
423*ebfedea0SLionel Sambuc/* Define if you have the function `getopt'. */
424*ebfedea0SLionel Sambuc/* #define HAVE_GETOPT 1 */
425*ebfedea0SLionel Sambuc
426*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getpagesize' function. */
427*ebfedea0SLionel Sambuc/* #define HAVE_GETPAGESIZE 1 */
428*ebfedea0SLionel Sambuc
429*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getpeereid' function. */
430*ebfedea0SLionel Sambuc/* #define HAVE_GETPEEREID 1 */
431*ebfedea0SLionel Sambuc
432*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getpeerucred' function. */
433*ebfedea0SLionel Sambuc/* #undef HAVE_GETPEERUCRED */
434*ebfedea0SLionel Sambuc
435*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getprogname' function. */
436*ebfedea0SLionel Sambuc/* #define HAVE_GETPROGNAME 1 */
437*ebfedea0SLionel Sambuc
438*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getpwnam_r' function. */
439*ebfedea0SLionel Sambuc/* #define HAVE_GETPWNAM_R 1 */
440*ebfedea0SLionel Sambuc
441*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getrlimit' function. */
442*ebfedea0SLionel Sambuc/* #define HAVE_GETRLIMIT 1 */
443*ebfedea0SLionel Sambuc
444*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getsockopt' function. */
445*ebfedea0SLionel Sambuc#define HAVE_GETSOCKOPT 1
446*ebfedea0SLionel Sambuc
447*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getspnam' function. */
448*ebfedea0SLionel Sambuc/* #undef HAVE_GETSPNAM */
449*ebfedea0SLionel Sambuc
450*ebfedea0SLionel Sambuc/* Define if you have the function `gettimeofday'. */
451*ebfedea0SLionel Sambuc/* #define HAVE_GETTIMEOFDAY 1 */
452*ebfedea0SLionel Sambuc
453*ebfedea0SLionel Sambuc/* Define to 1 if you have the `getudbnam' function. */
454*ebfedea0SLionel Sambuc/* #undef HAVE_GETUDBNAM */
455*ebfedea0SLionel Sambuc
456*ebfedea0SLionel Sambuc/* Define if you have the function `getuid'. */
457*ebfedea0SLionel Sambuc/* #define HAVE_GETUID 1 */
458*ebfedea0SLionel Sambuc
459*ebfedea0SLionel Sambuc/* Define if you have the function `getusershell'. */
460*ebfedea0SLionel Sambuc/* #define HAVE_GETUSERSHELL 1 */
461*ebfedea0SLionel Sambuc
462*ebfedea0SLionel Sambuc/* define if you have a glob() that groks GLOB_BRACE, GLOB_NOCHECK,
463*ebfedea0SLionel Sambuc   GLOB_QUOTE, GLOB_TILDE, and GLOB_LIMIT */
464*ebfedea0SLionel Sambuc/* #define HAVE_GLOB 1 */
465*ebfedea0SLionel Sambuc
466*ebfedea0SLionel Sambuc/* Define to 1 if you have the `grantpt' function. */
467*ebfedea0SLionel Sambuc/* #define HAVE_GRANTPT 1 */
468*ebfedea0SLionel Sambuc
469*ebfedea0SLionel Sambuc/* Define to 1 if you have the <grp.h> header file. */
470*ebfedea0SLionel Sambuc/* #define HAVE_GRP_H 1 */
471*ebfedea0SLionel Sambuc
472*ebfedea0SLionel Sambuc/* Define to 1 if you have the `hstrerror' function. */
473*ebfedea0SLionel Sambuc/* #define HAVE_HSTRERROR 1 */
474*ebfedea0SLionel Sambuc
475*ebfedea0SLionel Sambuc/* Define if you have the `h_errlist' variable. */
476*ebfedea0SLionel Sambuc/* #undef HAVE_H_ERRLIST */
477*ebfedea0SLionel Sambuc
478*ebfedea0SLionel Sambuc/* Define if you have the `h_errno' variable. */
479*ebfedea0SLionel Sambuc/* #define HAVE_H_ERRNO 1 */
480*ebfedea0SLionel Sambuc
481*ebfedea0SLionel Sambuc/* Define if you have the `h_nerr' variable. */
482*ebfedea0SLionel Sambuc/* #undef HAVE_H_NERR */
483*ebfedea0SLionel Sambuc
484*ebfedea0SLionel Sambuc/* Define to 1 if you have the <ifaddrs.h> header file. */
485*ebfedea0SLionel Sambuc/* #undef HAVE_IFADDRS_H */
486*ebfedea0SLionel Sambuc
487*ebfedea0SLionel Sambuc/* Define if you have the in6addr_loopback variable */
488*ebfedea0SLionel Sambuc/* #undef HAVE_IN6ADDR_LOOPBACK */
489*ebfedea0SLionel Sambuc
490*ebfedea0SLionel Sambuc/*  */
491*ebfedea0SLionel Sambuc#define HAVE_INET_ADDR 1
492*ebfedea0SLionel Sambuc
493*ebfedea0SLionel Sambuc/* define */
494*ebfedea0SLionel Sambuc/* #define HAVE_INET_ATON 1 */
495*ebfedea0SLionel Sambuc
496*ebfedea0SLionel Sambuc/* define */
497*ebfedea0SLionel Sambuc/* #define HAVE_INET_NTOP 1 */
498*ebfedea0SLionel Sambuc
499*ebfedea0SLionel Sambuc/* define */
500*ebfedea0SLionel Sambuc/* #define HAVE_INET_PTON 1 */
501*ebfedea0SLionel Sambuc
502*ebfedea0SLionel Sambuc#if _WIN32_WINNT >= 0x0600
503*ebfedea0SLionel Sambuc
504*ebfedea0SLionel Sambuc#define HAVE_INET_NTOP 1
505*ebfedea0SLionel Sambuc
506*ebfedea0SLionel Sambuc#define HAVE_INET_PTON 1
507*ebfedea0SLionel Sambuc
508*ebfedea0SLionel Sambuc#endif
509*ebfedea0SLionel Sambuc
510*ebfedea0SLionel Sambuc/* Define if you have the function `initgroups'. */
511*ebfedea0SLionel Sambuc/* #define HAVE_INITGROUPS 1 */
512*ebfedea0SLionel Sambuc
513*ebfedea0SLionel Sambuc/* Define to 1 if you have the `initstate' function. */
514*ebfedea0SLionel Sambuc/* #define HAVE_INITSTATE 1 */
515*ebfedea0SLionel Sambuc
516*ebfedea0SLionel Sambuc/* Define if you have the function `innetgr'. */
517*ebfedea0SLionel Sambuc/* #undef HAVE_INNETGR */
518*ebfedea0SLionel Sambuc
519*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `int16_t'. */
520*ebfedea0SLionel Sambuc/* #define HAVE_INT16_T 1 */
521*ebfedea0SLionel Sambuc
522*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `int32_t'. */
523*ebfedea0SLionel Sambuc/* #define HAVE_INT32_T 1 */
524*ebfedea0SLionel Sambuc
525*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `int64_t'. */
526*ebfedea0SLionel Sambuc/* #define HAVE_INT64_T 1 */
527*ebfedea0SLionel Sambuc
528*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `int8_t'. */
529*ebfedea0SLionel Sambuc/* #define HAVE_INT8_T 1 */
530*ebfedea0SLionel Sambuc
531*ebfedea0SLionel Sambuc/* Define to 1 if you have the <inttypes.h> header file. */
532*ebfedea0SLionel Sambuc/* #define HAVE_INTTYPES_H 1 */
533*ebfedea0SLionel Sambuc
534*ebfedea0SLionel Sambuc/* Define to 1 if you have the <io.h> header file. */
535*ebfedea0SLionel Sambuc#define HAVE_IO_H 1
536*ebfedea0SLionel Sambuc
537*ebfedea0SLionel Sambuc/* Define if you have IPv6. */
538*ebfedea0SLionel Sambuc#define HAVE_IPV6 1
539*ebfedea0SLionel Sambuc
540*ebfedea0SLionel Sambuc/* Define if you have the function `iruserok'. */
541*ebfedea0SLionel Sambuc/* #define HAVE_IRUSEROK 1 */
542*ebfedea0SLionel Sambuc
543*ebfedea0SLionel Sambuc/* Define to 1 if you have the `issetugid' function. */
544*ebfedea0SLionel Sambuc/* #undef HAVE_ISSETUGID */
545*ebfedea0SLionel Sambuc
546*ebfedea0SLionel Sambuc/* Define if you want to use the Kerberos Credentials Manager. */
547*ebfedea0SLionel Sambuc/* #define HAVE_KCM 1 */
548*ebfedea0SLionel Sambuc
549*ebfedea0SLionel Sambuc/* Define to 1 if you have the <libutil.h> header file. */
550*ebfedea0SLionel Sambuc/* #undef HAVE_LIBUTIL_H */
551*ebfedea0SLionel Sambuc
552*ebfedea0SLionel Sambuc/* Define to 1 if you have the <limits.h> header file. */
553*ebfedea0SLionel Sambuc#define HAVE_LIMITS_H 1
554*ebfedea0SLionel Sambuc
555*ebfedea0SLionel Sambuc/* Define to 1 if you have the `loadquery' function. */
556*ebfedea0SLionel Sambuc/* #undef HAVE_LOADQUERY */
557*ebfedea0SLionel Sambuc
558*ebfedea0SLionel Sambuc/* Define if you have the function `localtime_r'. */
559*ebfedea0SLionel Sambuc/* #define HAVE_LOCALTIME_R 1 */
560*ebfedea0SLionel Sambuc
561*ebfedea0SLionel Sambuc/* Define to 1 if you have the <locale.h> header file. */
562*ebfedea0SLionel Sambuc#define HAVE_LOCALE_H 1
563*ebfedea0SLionel Sambuc
564*ebfedea0SLionel Sambuc/* Define to 1 if you have the `logout' function. */
565*ebfedea0SLionel Sambuc/* #define HAVE_LOGOUT 1 */
566*ebfedea0SLionel Sambuc
567*ebfedea0SLionel Sambuc/* Define to 1 if you have the `logwtmp' function. */
568*ebfedea0SLionel Sambuc/* #define HAVE_LOGWTMP 1 */
569*ebfedea0SLionel Sambuc
570*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `long long'. */
571*ebfedea0SLionel Sambuc#define HAVE_LONG_LONG 1
572*ebfedea0SLionel Sambuc
573*ebfedea0SLionel Sambuc/* Define if you have the function `lstat'. */
574*ebfedea0SLionel Sambuc/* #define HAVE_LSTAT 1 */
575*ebfedea0SLionel Sambuc
576*ebfedea0SLionel Sambuc/* Define to 1 if you have the <maillock.h> header file. */
577*ebfedea0SLionel Sambuc/* #undef HAVE_MAILLOCK_H */
578*ebfedea0SLionel Sambuc
579*ebfedea0SLionel Sambuc/* Define if you have the function `memmove'. */
580*ebfedea0SLionel Sambuc#define HAVE_MEMMOVE 1
581*ebfedea0SLionel Sambuc
582*ebfedea0SLionel Sambuc/* Define to 1 if you have the <memory.h> header file. */
583*ebfedea0SLionel Sambuc#define HAVE_MEMORY_H 1
584*ebfedea0SLionel Sambuc
585*ebfedea0SLionel Sambuc/* Define if you have the function `mkstemp'. */
586*ebfedea0SLionel Sambuc/* #define HAVE_MKSTEMP 1 */
587*ebfedea0SLionel Sambuc
588*ebfedea0SLionel Sambuc/* Define to 1 if you have the `mktime' function. */
589*ebfedea0SLionel Sambuc#define HAVE_MKTIME 1
590*ebfedea0SLionel Sambuc
591*ebfedea0SLionel Sambuc/* Define to 1 if you have a working `mmap' system call. */
592*ebfedea0SLionel Sambuc/* #undef HAVE_MMAP */
593*ebfedea0SLionel Sambuc
594*ebfedea0SLionel Sambuc/* define if you have a ndbm library */
595*ebfedea0SLionel Sambuc/* #undef HAVE_NDBM */
596*ebfedea0SLionel Sambuc
597*ebfedea0SLionel Sambuc/* Define to 1 if you have the <ndbm.h> header file. */
598*ebfedea0SLionel Sambuc/* #undef HAVE_NDBM_H */
599*ebfedea0SLionel Sambuc
600*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netdb.h> header file. */
601*ebfedea0SLionel Sambuc/* #define HAVE_NETDB_H 1 */
602*ebfedea0SLionel Sambuc
603*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netgroup.h> header file. */
604*ebfedea0SLionel Sambuc/* #undef HAVE_NETGROUP_H */
605*ebfedea0SLionel Sambuc
606*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet6/in6.h> header file. */
607*ebfedea0SLionel Sambuc/* #undef HAVE_NETINET6_IN6_H */
608*ebfedea0SLionel Sambuc
609*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet6/in6_var.h> header file. */
610*ebfedea0SLionel Sambuc/* #undef HAVE_NETINET6_IN6_VAR_H */
611*ebfedea0SLionel Sambuc
612*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet/in6.h> header file. */
613*ebfedea0SLionel Sambuc/* #undef HAVE_NETINET_IN6_H */
614*ebfedea0SLionel Sambuc
615*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet/in6_machtypes.h> header file. */
616*ebfedea0SLionel Sambuc/* #undef HAVE_NETINET_IN6_MACHTYPES_H */
617*ebfedea0SLionel Sambuc
618*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet/in.h> header file. */
619*ebfedea0SLionel Sambuc/* #define HAVE_NETINET_IN_H 1 */
620*ebfedea0SLionel Sambuc
621*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet/in_systm.h> header file. */
622*ebfedea0SLionel Sambuc/* #define HAVE_NETINET_IN_SYSTM_H 1 */
623*ebfedea0SLionel Sambuc
624*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet/ip.h> header file. */
625*ebfedea0SLionel Sambuc/* #define HAVE_NETINET_IP_H 1 */
626*ebfedea0SLionel Sambuc
627*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinet/tcp.h> header file. */
628*ebfedea0SLionel Sambuc/* #define HAVE_NETINET_TCP_H 1 */
629*ebfedea0SLionel Sambuc
630*ebfedea0SLionel Sambuc/* Define if you want to use Netinfo instead of krb5.conf. */
631*ebfedea0SLionel Sambuc/* #undef HAVE_NETINFO */
632*ebfedea0SLionel Sambuc
633*ebfedea0SLionel Sambuc/* Define to 1 if you have the <netinfo/ni.h> header file. */
634*ebfedea0SLionel Sambuc/* #undef HAVE_NETINFO_NI_H */
635*ebfedea0SLionel Sambuc
636*ebfedea0SLionel Sambuc/* Define to 1 if you have the <net/if.h> header file. */
637*ebfedea0SLionel Sambuc/* #define HAVE_NET_IF_H 1 */
638*ebfedea0SLionel Sambuc
639*ebfedea0SLionel Sambuc/* Define if NDBM really is DB (creates files *.db) */
640*ebfedea0SLionel Sambuc/* #define HAVE_NEW_DB 1 */
641*ebfedea0SLionel Sambuc
642*ebfedea0SLionel Sambuc/* Define to 1 if you have the `on_exit' function. */
643*ebfedea0SLionel Sambuc/* #define HAVE_ON_EXIT 1 */
644*ebfedea0SLionel Sambuc
645*ebfedea0SLionel Sambuc/* Define to 1 if you have the '_onexit' function */
646*ebfedea0SLionel Sambuc#define HAVE__ONEXIT 1
647*ebfedea0SLionel Sambuc
648*ebfedea0SLionel Sambuc/* Define to 1 if you have the `openpty' function. */
649*ebfedea0SLionel Sambuc/* #define HAVE_OPENPTY 1 */
650*ebfedea0SLionel Sambuc
651*ebfedea0SLionel Sambuc/* define to use openssl's libcrypto */
652*ebfedea0SLionel Sambuc/* #undef HAVE_OPENSSL */
653*ebfedea0SLionel Sambuc
654*ebfedea0SLionel Sambuc/* Define to enable basic OSF C2 support. */
655*ebfedea0SLionel Sambuc/* #undef HAVE_OSFC2 */
656*ebfedea0SLionel Sambuc
657*ebfedea0SLionel Sambuc/* Define to 1 if you have the <paths.h> header file. */
658*ebfedea0SLionel Sambuc/* #define HAVE_PATHS_H 1 */
659*ebfedea0SLionel Sambuc
660*ebfedea0SLionel Sambuc/* Define to 1 if you have the `pidfile' function. */
661*ebfedea0SLionel Sambuc/* #undef HAVE_PIDFILE */
662*ebfedea0SLionel Sambuc
663*ebfedea0SLionel Sambuc/* Define to 1 if you have the `poll' function. */
664*ebfedea0SLionel Sambuc/* #define HAVE_POLL 1 */
665*ebfedea0SLionel Sambuc
666*ebfedea0SLionel Sambuc/* Define to 1 if you have the <poll.h> header file. */
667*ebfedea0SLionel Sambuc/* #define HAVE_POLL_H 1 */
668*ebfedea0SLionel Sambuc
669*ebfedea0SLionel Sambuc/* Define to 1 if you have the <pthread.h> header file. */
670*ebfedea0SLionel Sambuc/* This option is added by the NTMakefile if we have a <pthread.h>. */
671*ebfedea0SLionel Sambuc/* #define HAVE_PTHREAD_H 1 */
672*ebfedea0SLionel Sambuc
673*ebfedea0SLionel Sambuc/* Define to 1 if you have the `ptsname' function. */
674*ebfedea0SLionel Sambuc/* #define HAVE_PTSNAME 1 */
675*ebfedea0SLionel Sambuc
676*ebfedea0SLionel Sambuc/* Define to 1 if you have the <pty.h> header file. */
677*ebfedea0SLionel Sambuc/* #define HAVE_PTY_H 1 */
678*ebfedea0SLionel Sambuc
679*ebfedea0SLionel Sambuc/* Define if you have the function `putenv'. */
680*ebfedea0SLionel Sambuc#define HAVE_PUTENV 1
681*ebfedea0SLionel Sambuc
682*ebfedea0SLionel Sambuc/* Define to 1 if you have the <pwd.h> header file. */
683*ebfedea0SLionel Sambuc/* #define HAVE_PWD_H 1 */
684*ebfedea0SLionel Sambuc
685*ebfedea0SLionel Sambuc/* Define to 1 if you have the `rand' function. */
686*ebfedea0SLionel Sambuc#define HAVE_RAND 1
687*ebfedea0SLionel Sambuc
688*ebfedea0SLionel Sambuc/* Define to 1 if you have the `random' function. */
689*ebfedea0SLionel Sambuc/* #define HAVE_RANDOM 1 */
690*ebfedea0SLionel Sambuc
691*ebfedea0SLionel Sambuc/* Define if you have the function `rcmd'. */
692*ebfedea0SLionel Sambuc/* #define HAVE_RCMD 1 */
693*ebfedea0SLionel Sambuc
694*ebfedea0SLionel Sambuc/* Define if you have a readline compatible library. */
695*ebfedea0SLionel Sambuc/* #define HAVE_READLINE 1 */
696*ebfedea0SLionel Sambuc
697*ebfedea0SLionel Sambuc/* Define if you have the function `readv'. */
698*ebfedea0SLionel Sambuc/* #define HAVE_READV 1 */
699*ebfedea0SLionel Sambuc
700*ebfedea0SLionel Sambuc/* Define if you have the function `recvmsg'. */
701*ebfedea0SLionel Sambuc/* #define HAVE_RECVMSG 1 */
702*ebfedea0SLionel Sambuc
703*ebfedea0SLionel Sambuc/* Define to 1 if you have the <resolv.h> header file. */
704*ebfedea0SLionel Sambuc/* #undef HAVE_RESOLV_H */
705*ebfedea0SLionel Sambuc
706*ebfedea0SLionel Sambuc/* Define to 1 if you have the `res_ndestroy' function. */
707*ebfedea0SLionel Sambuc/* #undef HAVE_RES_NDESTROY */
708*ebfedea0SLionel Sambuc
709*ebfedea0SLionel Sambuc/* Define to 1 if you have the `res_nsearch' function. */
710*ebfedea0SLionel Sambuc/* #undef HAVE_RES_NSEARCH */
711*ebfedea0SLionel Sambuc
712*ebfedea0SLionel Sambuc/* Define to 1 if you have the `res_search' function. */
713*ebfedea0SLionel Sambuc/* #undef HAVE_RES_SEARCH */
714*ebfedea0SLionel Sambuc
715*ebfedea0SLionel Sambuc/* Define to 1 if you have the `revoke' function. */
716*ebfedea0SLionel Sambuc/* #define HAVE_REVOKE 1 */
717*ebfedea0SLionel Sambuc
718*ebfedea0SLionel Sambuc/* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */
719*ebfedea0SLionel Sambuc/* #undef HAVE_RPCSVC_YPCLNT_H */
720*ebfedea0SLionel Sambuc
721*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sac.h> header file. */
722*ebfedea0SLionel Sambuc/* #undef HAVE_SAC_H */
723*ebfedea0SLionel Sambuc
724*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `sa_family_t'. */
725*ebfedea0SLionel Sambuc/* #define HAVE_SA_FAMILY_T 1 */
726*ebfedea0SLionel Sambuc
727*ebfedea0SLionel Sambuc/* Define to 1 if you have the <security/pam_modules.h> header file. */
728*ebfedea0SLionel Sambuc/* #undef HAVE_SECURITY_PAM_MODULES_H */
729*ebfedea0SLionel Sambuc
730*ebfedea0SLionel Sambuc/* Define to 1 if you have the `select' function. */
731*ebfedea0SLionel Sambuc#define HAVE_SELECT 1
732*ebfedea0SLionel Sambuc
733*ebfedea0SLionel Sambuc/* Define if you have the function `sendmsg'. */
734*ebfedea0SLionel Sambuc/* #define HAVE_SENDMSG 1 */
735*ebfedea0SLionel Sambuc
736*ebfedea0SLionel Sambuc/* Define if you have the function `setegid'. */
737*ebfedea0SLionel Sambuc/* #define HAVE_SETEGID 1 */
738*ebfedea0SLionel Sambuc
739*ebfedea0SLionel Sambuc/* Define if you have the function `setenv'. */
740*ebfedea0SLionel Sambuc#define HAVE_SETENV 1
741*ebfedea0SLionel Sambuc
742*ebfedea0SLionel Sambuc/* Define if you have the function `seteuid'. */
743*ebfedea0SLionel Sambuc/* #define HAVE_SETEUID 1 */
744*ebfedea0SLionel Sambuc
745*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setitimer' function. */
746*ebfedea0SLionel Sambuc/* #define HAVE_SETITIMER 1 */
747*ebfedea0SLionel Sambuc
748*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setlim' function. */
749*ebfedea0SLionel Sambuc/* #undef HAVE_SETLIM */
750*ebfedea0SLionel Sambuc
751*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setlogin' function. */
752*ebfedea0SLionel Sambuc/* #undef HAVE_SETLOGIN */
753*ebfedea0SLionel Sambuc
754*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setpcred' function. */
755*ebfedea0SLionel Sambuc/* #undef HAVE_SETPCRED */
756*ebfedea0SLionel Sambuc
757*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setpgid' function. */
758*ebfedea0SLionel Sambuc/* #define HAVE_SETPGID 1 */
759*ebfedea0SLionel Sambuc
760*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setproctitle' function. */
761*ebfedea0SLionel Sambuc/* #undef HAVE_SETPROCTITLE */
762*ebfedea0SLionel Sambuc
763*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setprogname' function. */
764*ebfedea0SLionel Sambuc/* #define HAVE_SETPROGNAME 1 */
765*ebfedea0SLionel Sambuc
766*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setregid' function. */
767*ebfedea0SLionel Sambuc/* #define HAVE_SETREGID 1 */
768*ebfedea0SLionel Sambuc
769*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setresgid' function. */
770*ebfedea0SLionel Sambuc/* #undef HAVE_SETRESGID */
771*ebfedea0SLionel Sambuc
772*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setresuid' function. */
773*ebfedea0SLionel Sambuc/* #undef HAVE_SETRESUID */
774*ebfedea0SLionel Sambuc
775*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setreuid' function. */
776*ebfedea0SLionel Sambuc/* #define HAVE_SETREUID 1 */
777*ebfedea0SLionel Sambuc
778*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setsid' function. */
779*ebfedea0SLionel Sambuc/* #define HAVE_SETSID 1 */
780*ebfedea0SLionel Sambuc
781*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setsockopt' function. */
782*ebfedea0SLionel Sambuc#define HAVE_SETSOCKOPT 1
783*ebfedea0SLionel Sambuc
784*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setstate' function. */
785*ebfedea0SLionel Sambuc/* #define HAVE_SETSTATE 1 */
786*ebfedea0SLionel Sambuc
787*ebfedea0SLionel Sambuc/* Define to 1 if you have the `setutent' function. */
788*ebfedea0SLionel Sambuc/* #define HAVE_SETUTENT 1 */
789*ebfedea0SLionel Sambuc
790*ebfedea0SLionel Sambuc/* Define to 1 if you have the `sgi_getcapabilitybyname' function. */
791*ebfedea0SLionel Sambuc/* #undef HAVE_SGI_GETCAPABILITYBYNAME */
792*ebfedea0SLionel Sambuc
793*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sgtty.h> header file. */
794*ebfedea0SLionel Sambuc/* #undef HAVE_SGTTY_H */
795*ebfedea0SLionel Sambuc
796*ebfedea0SLionel Sambuc/* Define to 1 if you have the <shadow.h> header file. */
797*ebfedea0SLionel Sambuc/* #undef HAVE_SHADOW_H */
798*ebfedea0SLionel Sambuc
799*ebfedea0SLionel Sambuc/* Define to 1 if you have the <siad.h> header file. */
800*ebfedea0SLionel Sambuc/* #undef HAVE_SIAD_H */
801*ebfedea0SLionel Sambuc
802*ebfedea0SLionel Sambuc/* Define to 1 if you have the `sigaction' function. */
803*ebfedea0SLionel Sambuc/* #define HAVE_SIGACTION 1 */
804*ebfedea0SLionel Sambuc
805*ebfedea0SLionel Sambuc/* Define to 1 if you have the <signal.h> header file. */
806*ebfedea0SLionel Sambuc#define HAVE_SIGNAL_H 1
807*ebfedea0SLionel Sambuc
808*ebfedea0SLionel Sambuc/* define if you have a working snprintf */
809*ebfedea0SLionel Sambuc/* snprintf() and vsnprintf() do exist.  But the implementations are
810*ebfedea0SLionel Sambuc   not C99 compliant. */
811*ebfedea0SLionel Sambuc/* #define HAVE_SNPRINTF 1 */
812*ebfedea0SLionel Sambuc
813*ebfedea0SLionel Sambuc/* Define to 1 if you have the `socket' function. */
814*ebfedea0SLionel Sambuc#define HAVE_SOCKET 1
815*ebfedea0SLionel Sambuc
816*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `socklen_t'. */
817*ebfedea0SLionel Sambuc#define HAVE_SOCKLEN_T 1
818*ebfedea0SLionel Sambuc
819*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `ssize_t'. */
820*ebfedea0SLionel Sambuc/* #define HAVE_SSIZE_T 1 */
821*ebfedea0SLionel Sambuc
822*ebfedea0SLionel Sambuc/* Define to 1 if you have the <standards.h> header file. */
823*ebfedea0SLionel Sambuc/* #undef HAVE_STANDARDS_H */
824*ebfedea0SLionel Sambuc
825*ebfedea0SLionel Sambuc/* Define to 1 if you have the <stdint.h> header file. */
826*ebfedea0SLionel Sambuc/* #define HAVE_STDINT_H 1 */
827*ebfedea0SLionel Sambuc
828*ebfedea0SLionel Sambuc/* Define to 1 if you have the <stdlib.h> header file. */
829*ebfedea0SLionel Sambuc#define HAVE_STDLIB_H 1
830*ebfedea0SLionel Sambuc
831*ebfedea0SLionel Sambuc/* Define if you have the function `strcasecmp'. */
832*ebfedea0SLionel Sambuc#define HAVE_STRCASECMP 1
833*ebfedea0SLionel Sambuc#define strcasecmp _stricmp
834*ebfedea0SLionel Sambuc
835*ebfedea0SLionel Sambuc/* Define if you have the function `strdup'. */
836*ebfedea0SLionel Sambuc#define HAVE_STRDUP 1
837*ebfedea0SLionel Sambuc
838*ebfedea0SLionel Sambuc/* Define if you have the function `strerror'. */
839*ebfedea0SLionel Sambuc#define HAVE_STRERROR 1
840*ebfedea0SLionel Sambuc
841*ebfedea0SLionel Sambuc/* Define if you have the function `strftime'. */
842*ebfedea0SLionel Sambuc#define HAVE_STRFTIME 1
843*ebfedea0SLionel Sambuc
844*ebfedea0SLionel Sambuc/* Define to 1 if you have the <strings.h> header file. */
845*ebfedea0SLionel Sambuc/* #define HAVE_STRINGS_H 1 */
846*ebfedea0SLionel Sambuc
847*ebfedea0SLionel Sambuc/* Define to 1 if you have the <string.h> header file. */
848*ebfedea0SLionel Sambuc#define HAVE_STRING_H 1
849*ebfedea0SLionel Sambuc
850*ebfedea0SLionel Sambuc/* Define if you have the function `strlcat'. */
851*ebfedea0SLionel Sambuc/* #define HAVE_STRLCAT 1 */
852*ebfedea0SLionel Sambuc
853*ebfedea0SLionel Sambuc/* Define if you have the function `strlcpy'. */
854*ebfedea0SLionel Sambuc/* #define HAVE_STRLCPY 1 */
855*ebfedea0SLionel Sambuc
856*ebfedea0SLionel Sambuc/* Define if you have the function `strlwr'. */
857*ebfedea0SLionel Sambuc#define HAVE_STRLWR 1
858*ebfedea0SLionel Sambuc
859*ebfedea0SLionel Sambuc/* Define if you have the function `strncasecmp'. */
860*ebfedea0SLionel Sambuc#define HAVE_STRNCASECMP 1
861*ebfedea0SLionel Sambuc#define strncasecmp _strnicmp
862*ebfedea0SLionel Sambuc
863*ebfedea0SLionel Sambuc/* Define if you have the function `strndup'. */
864*ebfedea0SLionel Sambuc/* #define HAVE_STRNDUP 1 */
865*ebfedea0SLionel Sambuc
866*ebfedea0SLionel Sambuc/* Define if you have the function `strnlen'. */
867*ebfedea0SLionel Sambuc#define HAVE_STRNLEN 1
868*ebfedea0SLionel Sambuc
869*ebfedea0SLionel Sambuc/* Define to 1 if you have the <stropts.h> header file. */
870*ebfedea0SLionel Sambuc/* #undef HAVE_STROPTS_H */
871*ebfedea0SLionel Sambuc
872*ebfedea0SLionel Sambuc/* Define if you have the function `strptime'. */
873*ebfedea0SLionel Sambuc/* #define HAVE_STRPTIME 1 */
874*ebfedea0SLionel Sambuc
875*ebfedea0SLionel Sambuc/* Define if you have the function `strsep'. */
876*ebfedea0SLionel Sambuc/* #define HAVE_STRSEP 1 */
877*ebfedea0SLionel Sambuc
878*ebfedea0SLionel Sambuc/* Define if you have the function `strsep_copy'. */
879*ebfedea0SLionel Sambuc/* #undef HAVE_STRSEP_COPY */
880*ebfedea0SLionel Sambuc
881*ebfedea0SLionel Sambuc/* Define to 1 if you have the `strstr' function. */
882*ebfedea0SLionel Sambuc#define HAVE_STRSTR 1
883*ebfedea0SLionel Sambuc
884*ebfedea0SLionel Sambuc/* Define to 1 if you have the `strsvis' function. */
885*ebfedea0SLionel Sambuc/* #undef HAVE_STRSVIS */
886*ebfedea0SLionel Sambuc
887*ebfedea0SLionel Sambuc/* Define if you have the function `strtok_r'. */
888*ebfedea0SLionel Sambuc/* #define HAVE_STRTOK_R 1 */
889*ebfedea0SLionel Sambuc
890*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `struct addrinfo'. */
891*ebfedea0SLionel Sambuc#define HAVE_STRUCT_ADDRINFO 1
892*ebfedea0SLionel Sambuc
893*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `struct ifaddrs'. */
894*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_IFADDRS */
895*ebfedea0SLionel Sambuc
896*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `struct iovec'. */
897*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_IOVEC 1 */
898*ebfedea0SLionel Sambuc
899*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `struct msghdr'. */
900*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_MSGHDR 1 */
901*ebfedea0SLionel Sambuc
902*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `struct sockaddr'. */
903*ebfedea0SLionel Sambuc#define HAVE_STRUCT_SOCKADDR 1
904*ebfedea0SLionel Sambuc
905*ebfedea0SLionel Sambuc/* Define if struct sockaddr has field sa_len. */
906*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */
907*ebfedea0SLionel Sambuc
908*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `struct sockaddr_storage'. */
909*ebfedea0SLionel Sambuc#define HAVE_STRUCT_SOCKADDR_STORAGE 1
910*ebfedea0SLionel Sambuc
911*ebfedea0SLionel Sambuc/* define if you have struct spwd */
912*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_SPWD */
913*ebfedea0SLionel Sambuc
914*ebfedea0SLionel Sambuc/* Define if struct tm has field tm_gmtoff. */
915*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_TM_TM_GMTOFF */
916*ebfedea0SLionel Sambuc
917*ebfedea0SLionel Sambuc/* Define if struct tm has field tm_zone. */
918*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_TM_TM_ZONE */
919*ebfedea0SLionel Sambuc
920*ebfedea0SLionel Sambuc/* Define if struct utmpx has field ut_exit. */
921*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_UTMPX_UT_EXIT */
922*ebfedea0SLionel Sambuc
923*ebfedea0SLionel Sambuc/* Define if struct utmpx has field ut_syslen. */
924*ebfedea0SLionel Sambuc/* #undef HAVE_STRUCT_UTMPX_UT_SYSLEN */
925*ebfedea0SLionel Sambuc
926*ebfedea0SLionel Sambuc/* Define if struct utmp has field ut_addr. */
927*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_UTMP_UT_ADDR 1 */
928*ebfedea0SLionel Sambuc
929*ebfedea0SLionel Sambuc/* Define if struct utmp has field ut_host. */
930*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_UTMP_UT_HOST 1 */
931*ebfedea0SLionel Sambuc
932*ebfedea0SLionel Sambuc/* Define if struct utmp has field ut_id. */
933*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_UTMP_UT_ID 1 */
934*ebfedea0SLionel Sambuc
935*ebfedea0SLionel Sambuc/* Define if struct utmp has field ut_pid. */
936*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_UTMP_UT_PID 1 */
937*ebfedea0SLionel Sambuc
938*ebfedea0SLionel Sambuc/* Define if struct utmp has field ut_type. */
939*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_UTMP_UT_TYPE 1 */
940*ebfedea0SLionel Sambuc
941*ebfedea0SLionel Sambuc/* Define if struct utmp has field ut_user. */
942*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_UTMP_UT_USER 1 */
943*ebfedea0SLionel Sambuc
944*ebfedea0SLionel Sambuc/* define if struct winsize is declared in sys/termios.h */
945*ebfedea0SLionel Sambuc/* #define HAVE_STRUCT_WINSIZE 1 */
946*ebfedea0SLionel Sambuc
947*ebfedea0SLionel Sambuc/* Define to 1 if you have the `strunvis' function. */
948*ebfedea0SLionel Sambuc/* #undef HAVE_STRUNVIS */
949*ebfedea0SLionel Sambuc
950*ebfedea0SLionel Sambuc/* Define if you have the function `strupr'. */
951*ebfedea0SLionel Sambuc#define HAVE_STRUPR 1
952*ebfedea0SLionel Sambuc
953*ebfedea0SLionel Sambuc/* Define to 1 if you have the `strvis' function. */
954*ebfedea0SLionel Sambuc/* #undef HAVE_STRVIS */
955*ebfedea0SLionel Sambuc
956*ebfedea0SLionel Sambuc/* Define to 1 if you have the `strvisx' function. */
957*ebfedea0SLionel Sambuc/* #undef HAVE_STRVISX */
958*ebfedea0SLionel Sambuc
959*ebfedea0SLionel Sambuc/* Define to 1 if you have the `svis' function. */
960*ebfedea0SLionel Sambuc/* #undef HAVE_SVIS */
961*ebfedea0SLionel Sambuc
962*ebfedea0SLionel Sambuc/* Define if you have the function `swab'. */
963*ebfedea0SLionel Sambuc#define HAVE_SWAB 1
964*ebfedea0SLionel Sambuc
965*ebfedea0SLionel Sambuc/* Define to 1 if you have the `sysconf' function. */
966*ebfedea0SLionel Sambuc/* #define HAVE_SYSCONF 1 */
967*ebfedea0SLionel Sambuc
968*ebfedea0SLionel Sambuc/* Define to 1 if you have the `sysctl' function. */
969*ebfedea0SLionel Sambuc/* #undef HAVE_SYSCTL */
970*ebfedea0SLionel Sambuc
971*ebfedea0SLionel Sambuc/* syslog is provided for _win32 in lib/roken */
972*ebfedea0SLionel Sambuc
973*ebfedea0SLionel Sambuc/* Define to 1 if you have the `syslog' function. */
974*ebfedea0SLionel Sambuc#define HAVE_SYSLOG 1
975*ebfedea0SLionel Sambuc
976*ebfedea0SLionel Sambuc/* Define to 1 if you have the <syslog.h> header file. */
977*ebfedea0SLionel Sambuc#define HAVE_SYSLOG_H 1
978*ebfedea0SLionel Sambuc
979*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/bitypes.h> header file. */
980*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_BITYPES_H */
981*ebfedea0SLionel Sambuc
982*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/bswap.h> header file. */
983*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_BSWAP_H */
984*ebfedea0SLionel Sambuc
985*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/capability.h> header file. */
986*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_CAPABILITY_H */
987*ebfedea0SLionel Sambuc
988*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/category.h> header file. */
989*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_CATEGORY_H */
990*ebfedea0SLionel Sambuc
991*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/file.h> header file. */
992*ebfedea0SLionel Sambuc/* #define HAVE_SYS_FILE_H 1 */
993*ebfedea0SLionel Sambuc
994*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/filio.h> header file. */
995*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_FILIO_H */
996*ebfedea0SLionel Sambuc
997*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/ioccom.h> header file. */
998*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_IOCCOM_H */
999*ebfedea0SLionel Sambuc
1000*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/ioctl.h> header file. */
1001*ebfedea0SLionel Sambuc/* #define HAVE_SYS_IOCTL_H 1 */
1002*ebfedea0SLionel Sambuc
1003*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/mman.h> header file. */
1004*ebfedea0SLionel Sambuc/* #define HAVE_SYS_MMAN_H 1 */
1005*ebfedea0SLionel Sambuc
1006*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/param.h> header file. */
1007*ebfedea0SLionel Sambuc/* #define HAVE_SYS_PARAM_H 1 */
1008*ebfedea0SLionel Sambuc
1009*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/proc.h> header file. */
1010*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_PROC_H */
1011*ebfedea0SLionel Sambuc
1012*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/ptyio.h> header file. */
1013*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_PTYIO_H */
1014*ebfedea0SLionel Sambuc
1015*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/ptyvar.h> header file. */
1016*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_PTYVAR_H */
1017*ebfedea0SLionel Sambuc
1018*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/pty.h> header file. */
1019*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_PTY_H */
1020*ebfedea0SLionel Sambuc
1021*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/resource.h> header file. */
1022*ebfedea0SLionel Sambuc/* #define HAVE_SYS_RESOURCE_H 1 */
1023*ebfedea0SLionel Sambuc
1024*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/select.h> header file. */
1025*ebfedea0SLionel Sambuc/* #define HAVE_SYS_SELECT_H 1 */
1026*ebfedea0SLionel Sambuc
1027*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/socket.h> header file. */
1028*ebfedea0SLionel Sambuc/* #define HAVE_SYS_SOCKET_H 1 */
1029*ebfedea0SLionel Sambuc
1030*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/sockio.h> header file. */
1031*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_SOCKIO_H */
1032*ebfedea0SLionel Sambuc
1033*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/stat.h> header file. */
1034*ebfedea0SLionel Sambuc#define HAVE_SYS_STAT_H 1
1035*ebfedea0SLionel Sambuc
1036*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/stream.h> header file. */
1037*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_STREAM_H */
1038*ebfedea0SLionel Sambuc
1039*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/stropts.h> header file. */
1040*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_STROPTS_H */
1041*ebfedea0SLionel Sambuc
1042*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/strtty.h> header file. */
1043*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_STRTTY_H */
1044*ebfedea0SLionel Sambuc
1045*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/str_tty.h> header file. */
1046*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_STR_TTY_H */
1047*ebfedea0SLionel Sambuc
1048*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/syscall.h> header file. */
1049*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_SYSCALL_H */
1050*ebfedea0SLionel Sambuc
1051*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/sysctl.h> header file. */
1052*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_SYSCTL_H */
1053*ebfedea0SLionel Sambuc
1054*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/termio.h> header file. */
1055*ebfedea0SLionel Sambuc/* #define HAVE_SYS_TERMIO_H 1 */
1056*ebfedea0SLionel Sambuc
1057*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/timeb.h> header file. */
1058*ebfedea0SLionel Sambuc#define HAVE_SYS_TIMEB_H 1
1059*ebfedea0SLionel Sambuc
1060*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/times.h> header file. */
1061*ebfedea0SLionel Sambuc/* #define HAVE_SYS_TIMES_H 1 */
1062*ebfedea0SLionel Sambuc
1063*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/time.h> header file. */
1064*ebfedea0SLionel Sambuc/* #define HAVE_SYS_TIME_H 1 */
1065*ebfedea0SLionel Sambuc
1066*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/tty.h> header file. */
1067*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_TTY_H */
1068*ebfedea0SLionel Sambuc
1069*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/types.h> header file. */
1070*ebfedea0SLionel Sambuc#define HAVE_SYS_TYPES_H 1
1071*ebfedea0SLionel Sambuc
1072*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/ucred.h> header file. */
1073*ebfedea0SLionel Sambuc/* #undef HAVE_SYS_UCRED_H */
1074*ebfedea0SLionel Sambuc
1075*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/uio.h> header file. */
1076*ebfedea0SLionel Sambuc/* #define HAVE_SYS_UIO_H 1 */
1077*ebfedea0SLionel Sambuc
1078*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/un.h> header file. */
1079*ebfedea0SLionel Sambuc/* #define HAVE_SYS_UN_H 1 */
1080*ebfedea0SLionel Sambuc
1081*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/utsname.h> header file. */
1082*ebfedea0SLionel Sambuc/* #define HAVE_SYS_UTSNAME_H 1 */
1083*ebfedea0SLionel Sambuc
1084*ebfedea0SLionel Sambuc/* Define to 1 if you have the <sys/wait.h> header file. */
1085*ebfedea0SLionel Sambuc/* #define HAVE_SYS_WAIT_H 1 */
1086*ebfedea0SLionel Sambuc
1087*ebfedea0SLionel Sambuc/* Define to 1 if you have the <termcap.h> header file. */
1088*ebfedea0SLionel Sambuc/* #define HAVE_TERMCAP_H 1 */
1089*ebfedea0SLionel Sambuc
1090*ebfedea0SLionel Sambuc/* Define to 1 if you have the <termios.h> header file. */
1091*ebfedea0SLionel Sambuc/* #define HAVE_TERMIOS_H 1 */
1092*ebfedea0SLionel Sambuc
1093*ebfedea0SLionel Sambuc/* Define to 1 if you have the <termio.h> header file. */
1094*ebfedea0SLionel Sambuc/* #define HAVE_TERMIO_H 1 */
1095*ebfedea0SLionel Sambuc
1096*ebfedea0SLionel Sambuc/* Define to 1 if you have the <term.h> header file. */
1097*ebfedea0SLionel Sambuc/* #undef HAVE_TERM_H */
1098*ebfedea0SLionel Sambuc
1099*ebfedea0SLionel Sambuc/* Define to 1 if you have the `tgetent' function. */
1100*ebfedea0SLionel Sambuc/* #define HAVE_TGETENT 1 */
1101*ebfedea0SLionel Sambuc
1102*ebfedea0SLionel Sambuc/* Define if you have the function `timegm'. */
1103*ebfedea0SLionel Sambuc/* #define HAVE_TIMEGM 1 */
1104*ebfedea0SLionel Sambuc
1105*ebfedea0SLionel Sambuc/* Define if you have the `timezone' variable. */
1106*ebfedea0SLionel Sambuc#define HAVE_TIMEZONE 1
1107*ebfedea0SLionel Sambuc
1108*ebfedea0SLionel Sambuc/* Define to 1 if you have the <time.h> header file. */
1109*ebfedea0SLionel Sambuc#define HAVE_TIME_H 1
1110*ebfedea0SLionel Sambuc
1111*ebfedea0SLionel Sambuc/* Define to 1 if you have the <tmpdir.h> header file. */
1112*ebfedea0SLionel Sambuc/* #undef HAVE_TMPDIR_H */
1113*ebfedea0SLionel Sambuc
1114*ebfedea0SLionel Sambuc/* Define to 1 if you have the `ttyname' function. */
1115*ebfedea0SLionel Sambuc/* #define HAVE_TTYNAME 1 */
1116*ebfedea0SLionel Sambuc
1117*ebfedea0SLionel Sambuc/* Define to 1 if you have the `ttyslot' function. */
1118*ebfedea0SLionel Sambuc/* #define HAVE_TTYSLOT 1 */
1119*ebfedea0SLionel Sambuc
1120*ebfedea0SLionel Sambuc/* Define to 1 if you have the <udb.h> header file. */
1121*ebfedea0SLionel Sambuc/* #undef HAVE_UDB_H */
1122*ebfedea0SLionel Sambuc
1123*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `uint16_t'. */
1124*ebfedea0SLionel Sambuc/* #define HAVE_UINT16_T 1 */
1125*ebfedea0SLionel Sambuc
1126*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `uint32_t'. */
1127*ebfedea0SLionel Sambuc/* #define HAVE_UINT32_T 1 */
1128*ebfedea0SLionel Sambuc
1129*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `uint64_t'. */
1130*ebfedea0SLionel Sambuc/* #define HAVE_UINT64_T 1 */
1131*ebfedea0SLionel Sambuc
1132*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `uint8_t'. */
1133*ebfedea0SLionel Sambuc/* #define HAVE_UINT8_T 1 */
1134*ebfedea0SLionel Sambuc
1135*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `uintptr_t'. */
1136*ebfedea0SLionel Sambuc#define HAVE_UINTPTR_T 1
1137*ebfedea0SLionel Sambuc
1138*ebfedea0SLionel Sambuc/* Define to 1 if you have the `umask' function. */
1139*ebfedea0SLionel Sambuc/* #define HAVE_UMASK 1 */
1140*ebfedea0SLionel Sambuc
1141*ebfedea0SLionel Sambuc/* Define to 1 if you have the `uname' function. */
1142*ebfedea0SLionel Sambuc/* #define HAVE_UNAME 1 */
1143*ebfedea0SLionel Sambuc
1144*ebfedea0SLionel Sambuc/* Define to 1 if you have the <unistd.h> header file. */
1145*ebfedea0SLionel Sambuc/* #define HAVE_UNISTD_H 1 */
1146*ebfedea0SLionel Sambuc
1147*ebfedea0SLionel Sambuc/* Define to 1 if you have the `unlockpt' function. */
1148*ebfedea0SLionel Sambuc/* #define HAVE_UNLOCKPT 1 */
1149*ebfedea0SLionel Sambuc
1150*ebfedea0SLionel Sambuc/* Define if you have the function `unsetenv'. */
1151*ebfedea0SLionel Sambuc/* #define HAVE_UNSETENV 1 */
1152*ebfedea0SLionel Sambuc
1153*ebfedea0SLionel Sambuc/* Define to 1 if you have the `unvis' function. */
1154*ebfedea0SLionel Sambuc/* #undef HAVE_UNVIS */
1155*ebfedea0SLionel Sambuc
1156*ebfedea0SLionel Sambuc/* Define to 1 if you have the <userconf.h> header file. */
1157*ebfedea0SLionel Sambuc/* #undef HAVE_USERCONF_H */
1158*ebfedea0SLionel Sambuc
1159*ebfedea0SLionel Sambuc/* Define to 1 if you have the <usersec.h> header file. */
1160*ebfedea0SLionel Sambuc/* #undef HAVE_USERSEC_H */
1161*ebfedea0SLionel Sambuc
1162*ebfedea0SLionel Sambuc/* Define to 1 if you have the <util.h> header file. */
1163*ebfedea0SLionel Sambuc/* #undef HAVE_UTIL_H */
1164*ebfedea0SLionel Sambuc
1165*ebfedea0SLionel Sambuc/* Define to 1 if you have the <utmpx.h> header file. */
1166*ebfedea0SLionel Sambuc/* #define HAVE_UTMPX_H 1 */
1167*ebfedea0SLionel Sambuc
1168*ebfedea0SLionel Sambuc/* Define to 1 if you have the <utmp.h> header file. */
1169*ebfedea0SLionel Sambuc/* #define HAVE_UTMP_H 1 */
1170*ebfedea0SLionel Sambuc
1171*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `u_int16_t'. */
1172*ebfedea0SLionel Sambuc/* #define HAVE_U_INT16_T 1 */
1173*ebfedea0SLionel Sambuc
1174*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `u_int32_t'. */
1175*ebfedea0SLionel Sambuc/* #define HAVE_U_INT32_T 1 */
1176*ebfedea0SLionel Sambuc
1177*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `u_int64_t'. */
1178*ebfedea0SLionel Sambuc/* #define HAVE_U_INT64_T 1 */
1179*ebfedea0SLionel Sambuc
1180*ebfedea0SLionel Sambuc/* Define to 1 if the system has the type `u_int8_t'. */
1181*ebfedea0SLionel Sambuc/* #define HAVE_U_INT8_T 1 */
1182*ebfedea0SLionel Sambuc
1183*ebfedea0SLionel Sambuc/* Define to 1 if you have the `vasnprintf' function. */
1184*ebfedea0SLionel Sambuc/* #undef HAVE_VASNPRINTF */
1185*ebfedea0SLionel Sambuc
1186*ebfedea0SLionel Sambuc/* Define to 1 if you have the `vasprintf' function. */
1187*ebfedea0SLionel Sambuc/* #define HAVE_VASPRINTF 1 */
1188*ebfedea0SLionel Sambuc
1189*ebfedea0SLionel Sambuc/* Define if you have the function `verr'. */
1190*ebfedea0SLionel Sambuc/* #define HAVE_VERR 1 */
1191*ebfedea0SLionel Sambuc
1192*ebfedea0SLionel Sambuc/* Define if you have the function `verrx'. */
1193*ebfedea0SLionel Sambuc/* #define HAVE_VERRX 1 */
1194*ebfedea0SLionel Sambuc
1195*ebfedea0SLionel Sambuc/* Define to 1 if you have the `vhangup' function. */
1196*ebfedea0SLionel Sambuc/* #define HAVE_VHANGUP 1 */
1197*ebfedea0SLionel Sambuc
1198*ebfedea0SLionel Sambuc/* Define to 1 if you have the `vis' function. */
1199*ebfedea0SLionel Sambuc/* #undef HAVE_VIS */
1200*ebfedea0SLionel Sambuc
1201*ebfedea0SLionel Sambuc/* Define to 1 if you have the <vis.h> header file. */
1202*ebfedea0SLionel Sambuc/* #undef HAVE_VIS_H */
1203*ebfedea0SLionel Sambuc
1204*ebfedea0SLionel Sambuc/* define if you have a working vsnprintf */
1205*ebfedea0SLionel Sambuc/* snprintf() and vsnprintf() do exist.  But the implementations are
1206*ebfedea0SLionel Sambuc   not C99 compliant. */
1207*ebfedea0SLionel Sambuc/* #define HAVE_VSNPRINTF 1 */
1208*ebfedea0SLionel Sambuc
1209*ebfedea0SLionel Sambuc/* Define if you have the function `vsyslog'. */
1210*ebfedea0SLionel Sambuc#define HAVE_VSYSLOG 1
1211*ebfedea0SLionel Sambuc
1212*ebfedea0SLionel Sambuc/* Define if you have the function `vwarn'. */
1213*ebfedea0SLionel Sambuc/* #define HAVE_VWARN 1 */
1214*ebfedea0SLionel Sambuc
1215*ebfedea0SLionel Sambuc/* Define if you have the function `vwarnx'. */
1216*ebfedea0SLionel Sambuc/* #define HAVE_VWARNX 1 */
1217*ebfedea0SLionel Sambuc
1218*ebfedea0SLionel Sambuc/* Define if you have the function `warn'. */
1219*ebfedea0SLionel Sambuc/* #define HAVE_WARN 1 */
1220*ebfedea0SLionel Sambuc
1221*ebfedea0SLionel Sambuc/* Define if you have the function `warnx'. */
1222*ebfedea0SLionel Sambuc/* #define HAVE_WARNX 1 */
1223*ebfedea0SLionel Sambuc
1224*ebfedea0SLionel Sambuc/* Define if you have the function `writev'. */
1225*ebfedea0SLionel Sambuc/* #define HAVE_WRITEV 1 */
1226*ebfedea0SLionel Sambuc
1227*ebfedea0SLionel Sambuc/* Defined if we have WinSock */
1228*ebfedea0SLionel Sambuc#define HAVE_WINSOCK 1
1229*ebfedea0SLionel Sambuc
1230*ebfedea0SLionel Sambuc/* Defined if we have WinDNS */
1231*ebfedea0SLionel Sambuc#define HAVE_WINDNS 1
1232*ebfedea0SLionel Sambuc
1233*ebfedea0SLionel Sambuc/* define if struct winsize has ws_xpixel */
1234*ebfedea0SLionel Sambuc/* #define HAVE_WS_XPIXEL 1 */
1235*ebfedea0SLionel Sambuc
1236*ebfedea0SLionel Sambuc/* define if struct winsize has ws_ypixel */
1237*ebfedea0SLionel Sambuc/* #define HAVE_WS_YPIXEL 1 */
1238*ebfedea0SLionel Sambuc
1239*ebfedea0SLionel Sambuc/* Define to 1 if you have the `XauFileName' function. */
1240*ebfedea0SLionel Sambuc/* #undef HAVE_XAUFILENAME */
1241*ebfedea0SLionel Sambuc
1242*ebfedea0SLionel Sambuc/* Define to 1 if you have the `XauReadAuth' function. */
1243*ebfedea0SLionel Sambuc/* #undef HAVE_XAUREADAUTH */
1244*ebfedea0SLionel Sambuc
1245*ebfedea0SLionel Sambuc/* Define to 1 if you have the `XauWriteAuth' function. */
1246*ebfedea0SLionel Sambuc/* #undef HAVE_XAUWRITEAUTH */
1247*ebfedea0SLionel Sambuc
1248*ebfedea0SLionel Sambuc/* Define to 1 if you have the `yp_get_default_domain' function. */
1249*ebfedea0SLionel Sambuc/* #undef HAVE_YP_GET_DEFAULT_DOMAIN */
1250*ebfedea0SLionel Sambuc
1251*ebfedea0SLionel Sambuc/* Define to 1 if you have the `_getpty' function. */
1252*ebfedea0SLionel Sambuc/* #undef HAVE__GETPTY */
1253*ebfedea0SLionel Sambuc
1254*ebfedea0SLionel Sambuc/* Define if you have the `_res' variable. */
1255*ebfedea0SLionel Sambuc/* #undef HAVE__RES */
1256*ebfedea0SLionel Sambuc
1257*ebfedea0SLionel Sambuc/* Define to 1 if you have the `_scrsize' function. */
1258*ebfedea0SLionel Sambuc/* #undef HAVE__SCRSIZE */
1259*ebfedea0SLionel Sambuc
1260*ebfedea0SLionel Sambuc/* define if your compiler has __attribute__ */
1261*ebfedea0SLionel Sambuc/* #define HAVE___ATTRIBUTE__ 1 */
1262*ebfedea0SLionel Sambuc
1263*ebfedea0SLionel Sambuc/* Define if you have the `__progname' variable. */
1264*ebfedea0SLionel Sambuc/* #define HAVE___PROGNAME 1 */
1265*ebfedea0SLionel Sambuc
1266*ebfedea0SLionel Sambuc/* Define if you have the hesiod package. */
1267*ebfedea0SLionel Sambuc/* #undef HESIOD */
1268*ebfedea0SLionel Sambuc
1269*ebfedea0SLionel Sambuc/* Define if you are running IRIX 4. */
1270*ebfedea0SLionel Sambuc/* #undef IRIX4 */
1271*ebfedea0SLionel Sambuc
1272*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for asnprintf() */
1273*ebfedea0SLionel Sambuc/* #define NEED_ASNPRINTF_PROTO 1 */
1274*ebfedea0SLionel Sambuc
1275*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for asprintf() */
1276*ebfedea0SLionel Sambuc/* #undef NEED_ASPRINTF_PROTO */
1277*ebfedea0SLionel Sambuc
1278*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for crypt() */
1279*ebfedea0SLionel Sambuc/* #undef NEED_CRYPT_PROTO */
1280*ebfedea0SLionel Sambuc
1281*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for daemon() */
1282*ebfedea0SLionel Sambuc/* #undef NEED_DAEMON_PROTO */
1283*ebfedea0SLionel Sambuc
1284*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for gethostname() */
1285*ebfedea0SLionel Sambuc/* #undef NEED_GETHOSTNAME_PROTO */
1286*ebfedea0SLionel Sambuc
1287*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for getusershell() */
1288*ebfedea0SLionel Sambuc/* #undef NEED_GETUSERSHELL_PROTO */
1289*ebfedea0SLionel Sambuc
1290*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for glob() */
1291*ebfedea0SLionel Sambuc/* #undef NEED_GLOB_PROTO */
1292*ebfedea0SLionel Sambuc
1293*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for hstrerror() */
1294*ebfedea0SLionel Sambuc/* #undef NEED_HSTRERROR_PROTO */
1295*ebfedea0SLionel Sambuc
1296*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for inet_aton() */
1297*ebfedea0SLionel Sambuc/* #undef NEED_INET_ATON_PROTO */
1298*ebfedea0SLionel Sambuc
1299*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for iruserok() */
1300*ebfedea0SLionel Sambuc/* #undef NEED_IRUSEROK_PROTO */
1301*ebfedea0SLionel Sambuc
1302*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for mkstemp() */
1303*ebfedea0SLionel Sambuc/* #define NEED_MKSTEMP_PROTO 1 */
1304*ebfedea0SLionel Sambuc
1305*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for SecKeyGetCSPHandle() */
1306*ebfedea0SLionel Sambuc/* #undef NEED_SECKEYGETCSPHANDLE_PROTO */
1307*ebfedea0SLionel Sambuc
1308*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for setenv() */
1309*ebfedea0SLionel Sambuc#define NEED_SETENV_PROTO 1
1310*ebfedea0SLionel Sambuc
1311*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for snprintf() */
1312*ebfedea0SLionel Sambuc/* #undef NEED_SNPRINTF_PROTO */
1313*ebfedea0SLionel Sambuc
1314*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strndup() */
1315*ebfedea0SLionel Sambuc/* #undef NEED_STRNDUP_PROTO */
1316*ebfedea0SLionel Sambuc
1317*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strsep() */
1318*ebfedea0SLionel Sambuc/* #undef NEED_STRSEP_PROTO */
1319*ebfedea0SLionel Sambuc
1320*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strsvis() */
1321*ebfedea0SLionel Sambuc/* #define NEED_STRSVIS_PROTO 1 */
1322*ebfedea0SLionel Sambuc
1323*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strtok_r() */
1324*ebfedea0SLionel Sambuc#define NEED_STRTOK_R_PROTO 1
1325*ebfedea0SLionel Sambuc
1326*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strunvis() */
1327*ebfedea0SLionel Sambuc/* #define NEED_STRUNVIS_PROTO 1 */
1328*ebfedea0SLionel Sambuc
1329*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strvisx() */
1330*ebfedea0SLionel Sambuc/* #define NEED_STRVISX_PROTO 1 */
1331*ebfedea0SLionel Sambuc
1332*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for strvis() */
1333*ebfedea0SLionel Sambuc/* #define NEED_STRVIS_PROTO 1 */
1334*ebfedea0SLionel Sambuc
1335*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for svis() */
1336*ebfedea0SLionel Sambuc/* #define NEED_SVIS_PROTO 1 */
1337*ebfedea0SLionel Sambuc
1338*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for unsetenv() */
1339*ebfedea0SLionel Sambuc/* #undef NEED_UNSETENV_PROTO */
1340*ebfedea0SLionel Sambuc
1341*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for unvis() */
1342*ebfedea0SLionel Sambuc/* #define NEED_UNVIS_PROTO 1 */
1343*ebfedea0SLionel Sambuc
1344*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for vasnprintf() */
1345*ebfedea0SLionel Sambuc/* #define NEED_VASNPRINTF_PROTO 1 */
1346*ebfedea0SLionel Sambuc
1347*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for vasprintf() */
1348*ebfedea0SLionel Sambuc/* #undef NEED_VASPRINTF_PROTO */
1349*ebfedea0SLionel Sambuc
1350*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for vis() */
1351*ebfedea0SLionel Sambuc/* #define NEED_VIS_PROTO 1 */
1352*ebfedea0SLionel Sambuc
1353*ebfedea0SLionel Sambuc/* define if the system is missing a prototype for vsnprintf() */
1354*ebfedea0SLionel Sambuc/* #undef NEED_VSNPRINTF_PROTO */
1355*ebfedea0SLionel Sambuc
1356*ebfedea0SLionel Sambuc/* Define to 1 if your C compiler doesn't accept -c and -o together. */
1357*ebfedea0SLionel Sambuc/* #undef NO_MINUS_C_MINUS_O */
1358*ebfedea0SLionel Sambuc
1359*ebfedea0SLionel Sambuc/* Define if you don't want to use mmap. */
1360*ebfedea0SLionel Sambuc#define NO_MMAP 1
1361*ebfedea0SLionel Sambuc
1362*ebfedea0SLionel Sambuc/* Define if EGD rand method is not defined */
1363*ebfedea0SLionel Sambuc#define NO_RAND_EGD_METHOD 1
1364*ebfedea0SLionel Sambuc
1365*ebfedea0SLionel Sambuc/* Define if the Unix rand method is not defined */
1366*ebfedea0SLionel Sambuc#define NO_RAND_UNIX_METHOD 1
1367*ebfedea0SLionel Sambuc
1368*ebfedea0SLionel Sambuc/* Define if the Fortuna rand method is not defined */
1369*ebfedea0SLionel Sambuc#define NO_RAND_FORTUNA_METHOD 1
1370*ebfedea0SLionel Sambuc
1371*ebfedea0SLionel Sambuc/* Define if PID files should not be used. */
1372*ebfedea0SLionel Sambuc#define NO_PIDFILES 1
1373*ebfedea0SLionel Sambuc
1374*ebfedea0SLionel Sambuc/* Define if SIGPIPE is not supported */
1375*ebfedea0SLionel Sambuc#define NO_SIGPIPE 1
1376*ebfedea0SLionel Sambuc
1377*ebfedea0SLionel Sambuc/* Define if SIGXCPU is not supported */
1378*ebfedea0SLionel Sambuc#define NO_SIGXCPU 1
1379*ebfedea0SLionel Sambuc
1380*ebfedea0SLionel Sambuc/* Define if sleep() is not available */
1381*ebfedea0SLionel Sambuc#define NO_SLEEP 1
1382*ebfedea0SLionel Sambuc
1383*ebfedea0SLionel Sambuc/* Define to 1 if Unix sockets (AF_UNIX) are not available. */
1384*ebfedea0SLionel Sambuc#define NO_UNIX_SOCKETS 1
1385*ebfedea0SLionel Sambuc
1386*ebfedea0SLionel Sambuc/* Define to 1 if POSIX link/unlink operations should be avoided.
1387*ebfedea0SLionel Sambuc   This may be because the behavior of links are not not consistent
1388*ebfedea0SLionel Sambuc   with POSIX or because the filesystem may not support POSIX
1389*ebfedea0SLionel Sambuc   links. */
1390*ebfedea0SLionel Sambuc#define NO_POSIX_LINKS 1
1391*ebfedea0SLionel Sambuc
1392*ebfedea0SLionel Sambuc/* Define this to enable old environment option in telnet. */
1393*ebfedea0SLionel Sambuc/* #define OLD_ENVIRON 1 */
1394*ebfedea0SLionel Sambuc
1395*ebfedea0SLionel Sambuc/* define if prototype of openlog is compatible with void openlog(const char
1396*ebfedea0SLionel Sambuc   *, int, int) */
1397*ebfedea0SLionel Sambuc#define OPENLOG_PROTO_COMPATIBLE 1
1398*ebfedea0SLionel Sambuc
1399*ebfedea0SLionel Sambuc/* Define if getlogin has POSIX flavour (and not BSD). */
1400*ebfedea0SLionel Sambuc/* #define POSIX_GETLOGIN 1 */
1401*ebfedea0SLionel Sambuc
1402*ebfedea0SLionel Sambuc/* Define if getpwnam_r has POSIX flavour. */
1403*ebfedea0SLionel Sambuc/* #define POSIX_GETPWNAM_R 1 */
1404*ebfedea0SLionel Sambuc
1405*ebfedea0SLionel Sambuc/* Define if you have the readline package. */
1406*ebfedea0SLionel Sambuc#define READLINE 1
1407*ebfedea0SLionel Sambuc
1408*ebfedea0SLionel Sambuc/* Define if rename() does not unlink an existing file */
1409*ebfedea0SLionel Sambuc#define RENAME_DOES_NOT_UNLINK 1
1410*ebfedea0SLionel Sambuc
1411*ebfedea0SLionel Sambuc/* Define if you want to use samba socket wrappers. */
1412*ebfedea0SLionel Sambuc/* #undef SOCKET_WRAPPER_REPLACE */
1413*ebfedea0SLionel Sambuc
1414*ebfedea0SLionel Sambuc/* Define if a socket is not a file descriptor */
1415*ebfedea0SLionel Sambuc#define SOCKET_IS_NOT_AN_FD 1
1416*ebfedea0SLionel Sambuc
1417*ebfedea0SLionel Sambuc/* Define if FD_SETSIZE check does not apply to this platform */
1418*ebfedea0SLionel Sambuc#define NO_LIMIT_FD_SETSIZE 1
1419*ebfedea0SLionel Sambuc
1420*ebfedea0SLionel Sambuc/* Define to 1 if you have the ANSI C header files. */
1421*ebfedea0SLionel Sambuc#define STDC_HEADERS 1
1422*ebfedea0SLionel Sambuc
1423*ebfedea0SLionel Sambuc/* Define if you have streams ptys. */
1424*ebfedea0SLionel Sambuc/* #undef STREAMSPTY */
1425*ebfedea0SLionel Sambuc
1426*ebfedea0SLionel Sambuc/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1427*ebfedea0SLionel Sambuc/* #define TIME_WITH_SYS_TIME 1 */
1428*ebfedea0SLionel Sambuc
1429*ebfedea0SLionel Sambuc/* Define to 1 if your <sys/time.h> declares `struct tm'. */
1430*ebfedea0SLionel Sambuc/* #undef TM_IN_SYS_TIME */
1431*ebfedea0SLionel Sambuc
1432*ebfedea0SLionel Sambuc/* define if target is big endian */
1433*ebfedea0SLionel Sambuc/* #undef WORDS_BIGENDIAN */
1434*ebfedea0SLionel Sambuc
1435*ebfedea0SLionel Sambuc/* Define to 1 if the X Window System is missing or not being used. */
1436*ebfedea0SLionel Sambuc#define X_DISPLAY_MISSING 1
1437*ebfedea0SLionel Sambuc
1438*ebfedea0SLionel Sambuc/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
1439*ebfedea0SLionel Sambuc   `char[]'. */
1440*ebfedea0SLionel Sambuc/* #undef YYTEXT_POINTER */
1441*ebfedea0SLionel Sambuc
1442*ebfedea0SLionel Sambuc/* Number of bits in a file offset, on hosts where this is settable. */
1443*ebfedea0SLionel Sambuc/* #undef _FILE_OFFSET_BITS */
1444*ebfedea0SLionel Sambuc
1445*ebfedea0SLionel Sambuc/* Define to enable extensions on glibc-based systems such as Linux. */
1446*ebfedea0SLionel Sambuc/* #define _GNU_SOURCE 1 */
1447*ebfedea0SLionel Sambuc
1448*ebfedea0SLionel Sambuc/* Define for large files, on AIX-style hosts. */
1449*ebfedea0SLionel Sambuc/* #undef _LARGE_FILES */
1450*ebfedea0SLionel Sambuc
1451*ebfedea0SLionel Sambuc/* Set this to the default system lead string for telnetd
1452*ebfedea0SLionel Sambuc * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
1453*ebfedea0SLionel Sambuc * %v=os-version, %t=tty, %h=hostname, %d=date and time
1454*ebfedea0SLionel Sambuc */
1455*ebfedea0SLionel Sambuc/* #undef USE_IM */
1456*ebfedea0SLionel Sambuc
1457*ebfedea0SLionel Sambuc/* Used with login -p */
1458*ebfedea0SLionel Sambuc/* #undef LOGIN_ARGS */
1459*ebfedea0SLionel Sambuc
1460*ebfedea0SLionel Sambuc#ifdef ROKEN_RENAME
1461*ebfedea0SLionel Sambuc#include "roken_rename.h"
1462*ebfedea0SLionel Sambuc#endif
1463*ebfedea0SLionel Sambuc
1464*ebfedea0SLionel Sambuc#if defined(ENCRYPTION) && !defined(AUTHENTICATION)
1465*ebfedea0SLionel Sambuc#define AUTHENTICATION 1
1466*ebfedea0SLionel Sambuc#endif
1467*ebfedea0SLionel Sambuc
1468*ebfedea0SLionel Sambuc
1469*ebfedea0SLionel Sambuc
1470*ebfedea0SLionel Sambuc/* Paths */
1471*ebfedea0SLionel Sambuc
1472*ebfedea0SLionel Sambuc#define SYSCONFDIR "%{COMMONCONFIG}"
1473*ebfedea0SLionel Sambuc
1474*ebfedea0SLionel Sambuc#define LIBDIR "%{LIBDIR}"
1475*ebfedea0SLionel Sambuc
1476*ebfedea0SLionel Sambuc#endif	/* RC_INVOKED */
1477*ebfedea0SLionel Sambuc
1478*ebfedea0SLionel Sambuc
1479*ebfedea0SLionel Sambuc/* Version info */
1480*ebfedea0SLionel Sambuc
1481*ebfedea0SLionel Sambuc#define PACKAGE "@PACKAGE@"
1482*ebfedea0SLionel Sambuc
1483*ebfedea0SLionel Sambuc#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
1484*ebfedea0SLionel Sambuc
1485*ebfedea0SLionel Sambuc#define PACKAGE_NAME "@PACKAGE_NAME@"
1486*ebfedea0SLionel Sambuc
1487*ebfedea0SLionel Sambuc#define PACKAGE_STRING "@PACKAGE_NAME@ @PACKAGE_VERSION@"
1488*ebfedea0SLionel Sambuc
1489*ebfedea0SLionel Sambuc#define PACKAGE_TARNAME "@PACKAGE@"
1490*ebfedea0SLionel Sambuc
1491*ebfedea0SLionel Sambuc#define PACKAGE_VERSION "@PACKAGE_VERSION@"
1492*ebfedea0SLionel Sambuc
1493*ebfedea0SLionel Sambuc#define PACKAGE_COMPANY "@PACKAGE_COMPANY@"
1494*ebfedea0SLionel Sambuc
1495*ebfedea0SLionel Sambuc#define PACKAGE_COPYRIGHT "@PACKAGE_COPYRIGHT@"
1496*ebfedea0SLionel Sambuc
1497*ebfedea0SLionel Sambuc#define VERSION "@PACKAGE_VERSION@"
1498*ebfedea0SLionel Sambuc
1499*ebfedea0SLionel Sambuc#define RC_PRODVER_MAJOR @MAJOR@
1500*ebfedea0SLionel Sambuc
1501*ebfedea0SLionel Sambuc#define RC_PRODVER_MINOR @MINOR@
1502*ebfedea0SLionel Sambuc
1503*ebfedea0SLionel Sambuc#define RC_PRODVER_AUX   @AUX@
1504*ebfedea0SLionel Sambuc
1505*ebfedea0SLionel Sambuc#define RC_PRODVER_PATCH @PATCH@
1506*ebfedea0SLionel Sambuc
1507*ebfedea0SLionel Sambuc#define RC_PRODVER_C @MAJOR@,@MINOR@,@AUX@,@PATCH@
1508*ebfedea0SLionel Sambuc
1509*ebfedea0SLionel Sambuc#define RC_PRODVER_CS "@MAJOR@,@MINOR@,@AUX@,@PATCH@"
1510*ebfedea0SLionel Sambuc
1511*ebfedea0SLionel Sambuc#define RC_PRODVER_DS "@MAJOR@.@MINOR@.@AUX@.@PATCH@"
1512*ebfedea0SLionel Sambuc
1513*ebfedea0SLionel Sambuc#define RC_PRODUCT_NAME_0409 PACKAGE_NAME
1514*ebfedea0SLionel Sambuc
1515*ebfedea0SLionel Sambuc#define RC_PRODUCT_VER_0409 PACKAGE_VERSION
1516*ebfedea0SLionel Sambuc
1517*ebfedea0SLionel Sambuc#define RC_COMPANY_0409 PACKAGE_COMPANY
1518*ebfedea0SLionel Sambuc
1519*ebfedea0SLionel Sambuc#define RC_COPYRIGHT_0409 PACKAGE_COPYRIGHT
1520*ebfedea0SLionel Sambuc
1521*ebfedea0SLionel Sambuc@VERSION_OPTDEFS@
1522*ebfedea0SLionel Sambuc
1523*ebfedea0SLionel Sambuc#endif	/* __CONFIG_H__ */
1524