config.h revision 124244
1144518Sdavidxu/* config.h.  Generated by configure.  */
2144518Sdavidxu/* config.h.in.  Generated from configure.ac by autoheader.  */
3144518Sdavidxu/* $Id: acconfig.h,v 1.166 2003/09/16 01:52:19 dtucker Exp $ */
4144518Sdavidxu/* $FreeBSD: head/crypto/openssh/config.h 124244 2004-01-08 09:42:35Z des $ */
5144518Sdavidxu
6144518Sdavidxu/*
7144518Sdavidxu * Copyright (c) 1999-2003 Damien Miller.  All rights reserved.
8144518Sdavidxu *
9144518Sdavidxu * Redistribution and use in source and binary forms, with or without
10144518Sdavidxu * modification, are permitted provided that the following conditions
11144518Sdavidxu * are met:
12144518Sdavidxu * 1. Redistributions of source code must retain the above copyright
13144518Sdavidxu *    notice, this list of conditions and the following disclaimer.
14144518Sdavidxu * 2. Redistributions in binary form must reproduce the above copyright
15144518Sdavidxu *    notice, this list of conditions and the following disclaimer in the
16144518Sdavidxu *    documentation and/or other materials provided with the distribution.
17144518Sdavidxu *
18144518Sdavidxu * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19144518Sdavidxu * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20144518Sdavidxu * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21144518Sdavidxu * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22144518Sdavidxu * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23144518Sdavidxu * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24144518Sdavidxu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25144518Sdavidxu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26144518Sdavidxu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27144518Sdavidxu * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28144518Sdavidxu */
29144518Sdavidxu
30144518Sdavidxu#ifndef _CONFIG_H
31144518Sdavidxu#define _CONFIG_H
32144518Sdavidxu
33177853Sdavidxu/* Generated automatically from acconfig.h by autoheader. */
34177853Sdavidxu/* Please make your changes there */
35177853Sdavidxu
36177853Sdavidxu
37177853Sdavidxu/* Define if your platform breaks doing a seteuid before a setuid */
38177853Sdavidxu/* #undef SETEUID_BREAKS_SETUID */
39177853Sdavidxu
40177853Sdavidxu/* Define if your setreuid() is broken */
41177853Sdavidxu/* #undef BROKEN_SETREUID */
42163334Sdavidxu
43163334Sdavidxu/* Define if your setregid() is broken */
44163334Sdavidxu/* #undef BROKEN_SETREGID */
45163334Sdavidxu
46163334Sdavidxu/* Define to a Set Process Title type if your system is */
47163334Sdavidxu/* supported by bsd-setproctitle.c */
48163334Sdavidxu/* #undef SPT_TYPE */
49163334Sdavidxu/* #undef SPT_PADCHAR */
50212077Sdavidxu
51212077Sdavidxu/* setgroups() NOOP allowed */
52212077Sdavidxu/* #undef SETGROUPS_NOOP */
53212077Sdavidxu
54212077Sdavidxu/* SCO workaround */
55212077Sdavidxu/* #undef BROKEN_SYS_TERMIO_H */
56212077Sdavidxu
57144518Sdavidxu/* Define if you have SecureWare-based protected password database */
58179970Sdavidxu/* #undef HAVE_SECUREWARE */
59161680Sdavidxu
60179970Sdavidxu/* If your header files don't define LOGIN_PROGRAM, then use this (detected) */
61179970Sdavidxu/* from environment and PATH */
62179970Sdavidxu#define LOGIN_PROGRAM_FALLBACK "/usr/bin/login"
63179970Sdavidxu
64179970Sdavidxu/* Define if your password has a pw_class field */
65179970Sdavidxu#define HAVE_PW_CLASS_IN_PASSWD 1
66179970Sdavidxu
67179970Sdavidxu/* Define if your password has a pw_expire field */
68179970Sdavidxu#define HAVE_PW_EXPIRE_IN_PASSWD 1
69179970Sdavidxu
70179970Sdavidxu/* Define if your password has a pw_change field */
71179970Sdavidxu#define HAVE_PW_CHANGE_IN_PASSWD 1
72179970Sdavidxu
73179970Sdavidxu/* Define if your system uses access rights style file descriptor passing */
74179970Sdavidxu/* #undef HAVE_ACCRIGHTS_IN_MSGHDR */
75161680Sdavidxu
76161680Sdavidxu/* Define if your system uses ancillary data style file descriptor passing */
77161680Sdavidxu#define HAVE_CONTROL_IN_MSGHDR 1
78179970Sdavidxu
79179970Sdavidxu/* Define if you system's inet_ntoa is busted (e.g. Irix gcc issue) */
80161680Sdavidxu/* #undef BROKEN_INET_NTOA */
81179970Sdavidxu
82179970Sdavidxu/* Define if your system defines sys_errlist[] */
83179970Sdavidxu#define HAVE_SYS_ERRLIST 1
84179970Sdavidxu
85179970Sdavidxu/* Define if your system defines sys_nerr */
86179970Sdavidxu#define HAVE_SYS_NERR 1
87179970Sdavidxu
88179970Sdavidxu/* Define if your system choked on IP TOS setting */
89161680Sdavidxu/* #undef IP_TOS_IS_BROKEN */
90179970Sdavidxu
91179970Sdavidxu/* Define if you have the getuserattr function.  */
92179970Sdavidxu/* #undef HAVE_GETUSERATTR */
93179970Sdavidxu
94179970Sdavidxu/* Work around problematic Linux PAM modules handling of PAM_TTY */
95179970Sdavidxu/* #undef PAM_TTY_KLUDGE */
96179970Sdavidxu
97179970Sdavidxu/* Use PIPES instead of a socketpair() */
98179970Sdavidxu/* #undef USE_PIPES */
99179970Sdavidxu
100179970Sdavidxu/* Define if your snprintf is busted */
101179970Sdavidxu/* #undef BROKEN_SNPRINTF */
102179970Sdavidxu
103179970Sdavidxu/* Define if you are on Cygwin */
104179970Sdavidxu/* #undef HAVE_CYGWIN */
105179970Sdavidxu
106179970Sdavidxu/* Define if you have a broken realpath. */
107179970Sdavidxu/* #undef BROKEN_REALPATH */
108179970Sdavidxu
109179970Sdavidxu/* Define if you are on NeXT */
110179970Sdavidxu/* #undef HAVE_NEXT */
111179970Sdavidxu
112179970Sdavidxu/* Define if you are on NEWS-OS */
113179970Sdavidxu/* #undef HAVE_NEWS4 */
114179970Sdavidxu
115179970Sdavidxu/* Define if you want to enable PAM support */
116179970Sdavidxu#define USE_PAM 1
117161680Sdavidxu
118161680Sdavidxu/* Define if you want to enable AIX4's authenticate function */
119161680Sdavidxu/* #undef WITH_AIXAUTHENTICATE */
120179970Sdavidxu
121161680Sdavidxu/* Define if your AIX loginfailed() function takes 4 arguments (AIX >= 5.2) */
122200498Smarcel/* #undef AIX_LOGINFAILED_4ARG */
123200498Smarcel
124179970Sdavidxu/* Define if you have/want arrays (cluster-wide session managment, not C arrays) */
125179970Sdavidxu/* #undef WITH_IRIX_ARRAY */
126179970Sdavidxu
127179970Sdavidxu/* Define if you want IRIX project management */
128200498Smarcel/* #undef WITH_IRIX_PROJECT */
129177853Sdavidxu
130161680Sdavidxu/* Define if you want IRIX audit trails */
131161680Sdavidxu/* #undef WITH_IRIX_AUDIT */
132161680Sdavidxu
133163334Sdavidxu/* Define if you want IRIX kernel jobs */
134161680Sdavidxu/* #undef WITH_IRIX_JOBS */
135177853Sdavidxu
136161680Sdavidxu/* Location of PRNGD/EGD random number socket */
137161680Sdavidxu/* #undef PRNGD_SOCKET */
138161680Sdavidxu
139161680Sdavidxu/* Port number of PRNGD/EGD random number socket */
140161680Sdavidxu/* #undef PRNGD_PORT */
141161680Sdavidxu
142177853Sdavidxu/* Builtin PRNG command timeout */
143161680Sdavidxu#define ENTROPY_TIMEOUT_MSEC 200
144161680Sdavidxu
145161680Sdavidxu/* non-privileged user for privilege separation */
146173801Sdavidxu#define SSH_PRIVSEP_USER "sshd"
147144518Sdavidxu
148144518Sdavidxu/* Define if you want to install preformatted manpages.*/
149144518Sdavidxu/* #undef MANTYPE */
150144518Sdavidxu
151177853Sdavidxu/* Define if your ssl headers are included with #include <openssl/header.h>  */
152177853Sdavidxu#define HAVE_OPENSSL 1
153144518Sdavidxu
154144518Sdavidxu/* Define if you are linking against RSAref.  Used only to print the right
155144518Sdavidxu * message at run-time. */
156178647Sdavidxu/* #undef RSAREF */
157144518Sdavidxu
158173801Sdavidxu/* struct timeval */
159173801Sdavidxu#define HAVE_STRUCT_TIMEVAL 1
160173801Sdavidxu
161178647Sdavidxu/* struct utmp and struct utmpx fields */
162178647Sdavidxu#define HAVE_HOST_IN_UTMP 1
163178647Sdavidxu/* #undef HAVE_HOST_IN_UTMPX */
164173801Sdavidxu/* #undef HAVE_ADDR_IN_UTMP */
165173801Sdavidxu/* #undef HAVE_ADDR_IN_UTMPX */
166173801Sdavidxu/* #undef HAVE_ADDR_V6_IN_UTMP */
167178647Sdavidxu/* #undef HAVE_ADDR_V6_IN_UTMPX */
168173801Sdavidxu/* #undef HAVE_SYSLEN_IN_UTMPX */
169178647Sdavidxu/* #undef HAVE_PID_IN_UTMP */
170177853Sdavidxu/* #undef HAVE_TYPE_IN_UTMP */
171144518Sdavidxu/* #undef HAVE_TYPE_IN_UTMPX */
172164877Sdavidxu/* #undef HAVE_TV_IN_UTMP */
173164902Sdavidxu/* #undef HAVE_TV_IN_UTMPX */
174164902Sdavidxu/* #undef HAVE_ID_IN_UTMP */
175164902Sdavidxu/* #undef HAVE_ID_IN_UTMPX */
176164902Sdavidxu/* #undef HAVE_EXIT_IN_UTMP */
177164902Sdavidxu#define HAVE_TIME_IN_UTMP 1
178164902Sdavidxu/* #undef HAVE_TIME_IN_UTMPX */
179164877Sdavidxu
180164877Sdavidxu/* Define if you don't want to use your system's login() call */
181164877Sdavidxu/* #undef DISABLE_LOGIN */
182164877Sdavidxu
183164877Sdavidxu/* Define if you don't want to use pututline() etc. to write [uw]tmp */
184164877Sdavidxu/* #undef DISABLE_PUTUTLINE */
185179970Sdavidxu
186179970Sdavidxu/* Define if you don't want to use pututxline() etc. to write [uw]tmpx */
187164877Sdavidxu/* #undef DISABLE_PUTUTXLINE */
188164877Sdavidxu
189177853Sdavidxu/* Define if you don't want to use lastlog */
190164878Sdavidxu/* #undef DISABLE_LASTLOG */
191177853Sdavidxu
192164877Sdavidxu/* Define if you don't want to use lastlog in session.c */
193164877Sdavidxu/* #undef NO_SSH_LASTLOG */
194164877Sdavidxu
195164877Sdavidxu/* Define if you don't want to use utmp */
196164877Sdavidxu/* #undef DISABLE_UTMP */
197165110Sdavidxu
198165110Sdavidxu/* Define if you don't want to use utmpx */
199177853Sdavidxu#define DISABLE_UTMPX 1
200164877Sdavidxu
201164877Sdavidxu/* Define if you don't want to use wtmp */
202164877Sdavidxu/* #undef DISABLE_WTMP */
203164877Sdavidxu
204164877Sdavidxu/* Define if you don't want to use wtmpx */
205165110Sdavidxu#define DISABLE_WTMPX 1
206165110Sdavidxu
207177853Sdavidxu/* Some systems need a utmpx entry for /bin/login to work */
208164877Sdavidxu/* #undef LOGIN_NEEDS_UTMPX */
209177850Sdavidxu
210177850Sdavidxu/* Some versions of /bin/login need the TERM supplied on the commandline */
211177850Sdavidxu/* #undef LOGIN_NEEDS_TERM */
212177850Sdavidxu
213177853Sdavidxu/* Define if your login program cannot handle end of options ("--") */
214177850Sdavidxu/* #undef LOGIN_NO_ENDOPT */
215177850Sdavidxu
216177850Sdavidxu/* Define if you want to specify the path to your lastlog file */
217177850Sdavidxu/* #undef CONF_LASTLOG_FILE */
218177850Sdavidxu
219177853Sdavidxu/* Define if you want to specify the path to your utmp file */
220177850Sdavidxu#define CONF_UTMP_FILE "/var/run/utmp"
221177850Sdavidxu
222177850Sdavidxu/* Define if you want to specify the path to your wtmp file */
223177850Sdavidxu#define CONF_WTMP_FILE "/var/log/wtmp"
224177850Sdavidxu
225177853Sdavidxu/* Define if you want to specify the path to your utmpx file */
226177850Sdavidxu/* #undef CONF_UTMPX_FILE */
227212076Sdavidxu
228212076Sdavidxu/* Define if you want to specify the path to your wtmpx file */
229212076Sdavidxu/* #undef CONF_WTMPX_FILE */
230212076Sdavidxu
231212076Sdavidxu/* Define if you want external askpass support */
232212076Sdavidxu/* #undef USE_EXTERNAL_ASKPASS */
233212076Sdavidxu
234212076Sdavidxu/* Define if libc defines __progname */
235212076Sdavidxu#define HAVE___PROGNAME 1
236212076Sdavidxu
237212076Sdavidxu/* Define if compiler implements __FUNCTION__ */
238212076Sdavidxu#define HAVE___FUNCTION__ 1
239212076Sdavidxu
240212076Sdavidxu/* Define if compiler implements __func__ */
241212076Sdavidxu#define HAVE___func__ 1
242212076Sdavidxu
243212076Sdavidxu/* Define this is you want GSSAPI support in the version 2 protocol */
244212076Sdavidxu/* #undef GSSAPI */
245212076Sdavidxu
246212076Sdavidxu/* Define if you want Kerberos 5 support */
247212076Sdavidxu/* #undef KRB5 */
248212076Sdavidxu
249212076Sdavidxu/* Define this if you are using the Heimdal version of Kerberos V5 */
250212076Sdavidxu/* #undef HEIMDAL */
251212076Sdavidxu
252212076Sdavidxu/* Define if you want S/Key support */
253212076Sdavidxu/* #undef SKEY */
254212076Sdavidxu
255212076Sdavidxu/* Define if you want OPIE support */
256212076Sdavidxu/* #undef OPIE */
257212076Sdavidxu
258212076Sdavidxu/* Define if you want TCP Wrappers support */
259212076Sdavidxu#define LIBWRAP 1
260212076Sdavidxu
261212076Sdavidxu/* Define if your libraries define login() */
262212076Sdavidxu#define HAVE_LOGIN 1
263212076Sdavidxu
264212076Sdavidxu/* Define if your libraries define daemon() */
265212076Sdavidxu#define HAVE_DAEMON 1
266
267/* Define if your libraries define getpagesize() */
268#define HAVE_GETPAGESIZE 1
269
270/* Define if xauth is found in your path */
271#define XAUTH_PATH "/usr/X11R6/bin/xauth"
272
273/* Define if you want to allow MD5 passwords */
274/* #undef HAVE_MD5_PASSWORDS */
275
276/* Define if you want to disable shadow passwords */
277/* #undef DISABLE_SHADOW */
278
279/* Define if you want to use shadow password expire field */
280/* #undef HAS_SHADOW_EXPIRE */
281
282/* Define if you have Digital Unix Security Integration Architecture */
283/* #undef HAVE_OSF_SIA */
284
285/* Define if you have getpwanam(3) [SunOS 4.x] */
286/* #undef HAVE_GETPWANAM */
287
288/* Define if you have an old version of PAM which takes only one argument */
289/* to pam_strerror */
290/* #undef HAVE_OLD_PAM */
291
292/* Define if you are using Solaris-derived PAM which passes pam_messages  */
293/* to the conversation function with an extra level of indirection */
294/* #undef PAM_SUN_CODEBASE */
295
296/* Set this to your mail directory if you don't have maillock.h */
297#define MAIL_DIRECTORY "/var/mail"
298
299/* Data types */
300#define HAVE_U_INT 1
301#define HAVE_INTXX_T 1
302#define HAVE_U_INTXX_T 1
303#define HAVE_UINTXX_T 1
304#define HAVE_INT64_T 1
305#define HAVE_U_INT64_T 1
306#define HAVE_U_CHAR 1
307#define HAVE_SIZE_T 1
308#define HAVE_SSIZE_T 1
309#define HAVE_CLOCK_T 1
310#define HAVE_MODE_T 1
311#define HAVE_PID_T 1
312#define HAVE_SA_FAMILY_T 1
313#define HAVE_STRUCT_SOCKADDR_STORAGE 1
314#define HAVE_STRUCT_ADDRINFO 1
315#define HAVE_STRUCT_IN6_ADDR 1
316#define HAVE_STRUCT_SOCKADDR_IN6 1
317
318/* Fields in struct sockaddr_storage */
319#define HAVE_SS_FAMILY_IN_SS 1
320/* #undef HAVE___SS_FAMILY_IN_SS */
321
322/* Define if you have /dev/ptmx */
323/* #undef HAVE_DEV_PTMX */
324
325/* Define if you have /dev/ptc */
326/* #undef HAVE_DEV_PTS_AND_PTC */
327
328/* Define if you need to use IP address instead of hostname in $DISPLAY */
329/* #undef IPADDR_IN_DISPLAY */
330
331/* Specify default $PATH */
332/* #undef USER_PATH */
333
334/* Specify location of ssh.pid */
335#define _PATH_SSH_PIDDIR "/var/run"
336
337/* getaddrinfo is broken (if present) */
338/* #undef BROKEN_GETADDRINFO */
339
340/* Workaround more Linux IPv6 quirks */
341/* #undef DONT_TRY_OTHER_AF */
342
343/* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */
344/* #undef IPV4_IN_IPV6 */
345
346/* Define if you have BSD auth support */
347/* #undef BSD_AUTH */
348
349/* Define if X11 doesn't support AF_UNIX sockets on that system */
350/* #undef NO_X11_UNIX_SOCKETS */
351
352/* Define if the concept of ports only accessible to superusers isn't known */
353/* #undef NO_IPPORT_RESERVED_CONCEPT */
354
355/* Needed for SCO and NeXT */
356/* #undef BROKEN_SAVED_UIDS */
357
358/* Define if your system glob() function has the GLOB_ALTDIRFUNC extension */
359#define GLOB_HAS_ALTDIRFUNC 1
360
361/* Define if your system glob() function has gl_matchc options in glob_t */
362/* #undef GLOB_HAS_GL_MATCHC */
363
364/* Define in your struct dirent expects you to allocate extra space for d_name */
365/* #undef BROKEN_ONE_BYTE_DIRENT_D_NAME */
366
367/* Define if your system has /etc/default/login */
368/* #undef HAVE_ETC_DEFAULT_LOGIN */
369
370/* Define if your getopt(3) defines and uses optreset */
371#define HAVE_GETOPT_OPTRESET 1
372
373/* Define on *nto-qnx systems */
374/* #undef MISSING_NFDBITS */
375
376/* Define on *nto-qnx systems */
377/* #undef MISSING_HOWMANY */
378
379/* Define on *nto-qnx systems */
380/* #undef MISSING_FD_MASK */
381
382/* Define if you want smartcard support */
383/* #undef SMARTCARD */
384
385/* Define if you want smartcard support using sectok */
386/* #undef USE_SECTOK */
387
388/* Define if you want smartcard support using OpenSC */
389/* #undef USE_OPENSC */
390
391/* Define if you want to use OpenSSL's internally seeded PRNG only */
392#define OPENSSL_PRNG_ONLY 1
393
394/* Define if you shouldn't strip 'tty' from your ttyname in [uw]tmp */
395/* #undef WITH_ABBREV_NO_TTY */
396
397/* Define if you want a different $PATH for the superuser */
398/* #undef SUPERUSER_PATH */
399
400/* Path that unprivileged child will chroot() to in privep mode */
401/* #undef PRIVSEP_PATH */
402
403/* Define if your platform needs to skip post auth file descriptor passing */
404/* #undef DISABLE_FD_PASSING */
405
406/* Silly mkstemp() */
407/* #undef HAVE_STRICT_MKSTEMP */
408
409/* Some systems put this outside of libc */
410#define HAVE_NANOSLEEP 1
411
412/* Define if sshd somehow reacquires a controlling TTY after setsid() */
413/* #undef SSHD_ACQUIRES_CTTY */
414
415/* Define if cmsg_type is not passed correctly */
416/* #undef BROKEN_CMSG_TYPE */
417
418/* Strings used in /etc/passwd to denote locked account */
419/* #undef LOCKED_PASSWD_STRING */
420/* #undef LOCKED_PASSWD_PREFIX */
421/* #undef LOCKED_PASSWD_SUBSTR */
422
423/* Define if DNS support is to be activated */
424/* #undef DNS */
425
426/* Define if getrrsetbyname() exists */
427/* #undef HAVE_GETRRSETBYNAME */
428
429/* Define if HEADER.ad exists in arpa/nameser.h */
430/* #undef HAVE_HEADER_AD */
431
432
433/* Define to 1 if the `getpgrp' function requires zero arguments. */
434#define GETPGRP_VOID 1
435
436/* Define to 1 if you have the `arc4random' function. */
437#define HAVE_ARC4RANDOM 1
438
439/* Define to 1 if you have the `b64_ntop' function. */
440/* #undef HAVE_B64_NTOP */
441
442/* Define to 1 if you have the `b64_pton' function. */
443/* #undef HAVE_B64_PTON */
444
445/* Define to 1 if you have the `basename' function. */
446#define HAVE_BASENAME 1
447
448/* Define to 1 if you have the `bcopy' function. */
449#define HAVE_BCOPY 1
450
451/* Define to 1 if you have the `bindresvport_sa' function. */
452#define HAVE_BINDRESVPORT_SA 1
453
454/* Define to 1 if you have the <bstring.h> header file. */
455/* #undef HAVE_BSTRING_H */
456
457/* Define to 1 if you have the `clock' function. */
458#define HAVE_CLOCK 1
459
460/* Define if gai_strerror() returns const char * */
461/* #undef HAVE_CONST_GAI_STRERROR_PROTO */
462
463/* Define to 1 if you have the <crypt.h> header file. */
464/* #undef HAVE_CRYPT_H */
465
466/* Define to 1 if you have the `dirname' function. */
467#define HAVE_DIRNAME 1
468
469/* Define to 1 if you have the <endian.h> header file. */
470/* #undef HAVE_ENDIAN_H */
471
472/* Define to 1 if you have the `endutent' function. */
473/* #undef HAVE_ENDUTENT */
474
475/* Define to 1 if you have the `endutxent' function. */
476/* #undef HAVE_ENDUTXENT */
477
478/* Define to 1 if you have the `fchmod' function. */
479#define HAVE_FCHMOD 1
480
481/* Define to 1 if you have the `fchown' function. */
482#define HAVE_FCHOWN 1
483
484/* Define to 1 if you have the <features.h> header file. */
485/* #undef HAVE_FEATURES_H */
486
487/* Define to 1 if you have the <floatingpoint.h> header file. */
488#define HAVE_FLOATINGPOINT_H 1
489
490/* Define to 1 if you have the `freeaddrinfo' function. */
491#define HAVE_FREEADDRINFO 1
492
493/* Define to 1 if you have the `futimes' function. */
494#define HAVE_FUTIMES 1
495
496/* Define to 1 if you have the `gai_strerror' function. */
497#define HAVE_GAI_STRERROR 1
498
499/* Define to 1 if you have the `getaddrinfo' function. */
500#define HAVE_GETADDRINFO 1
501
502/* Define to 1 if you have the `getcwd' function. */
503#define HAVE_GETCWD 1
504
505/* Define to 1 if you have the `getgrouplist' function. */
506#define HAVE_GETGROUPLIST 1
507
508/* Define to 1 if you have the `getluid' function. */
509/* #undef HAVE_GETLUID */
510
511/* Define to 1 if you have the `getnameinfo' function. */
512#define HAVE_GETNAMEINFO 1
513
514/* Define to 1 if you have the `getopt' function. */
515#define HAVE_GETOPT 1
516
517/* Define to 1 if you have the <getopt.h> header file. */
518#define HAVE_GETOPT_H 1
519
520/* Define to 1 if you have the `getpeereid' function. */
521#define HAVE_GETPEEREID 1
522
523/* Define to 1 if you have the `getpwanam' function. */
524/* #undef HAVE_GETPWANAM */
525
526/* Define to 1 if you have the `getrlimit' function. */
527#define HAVE_GETRLIMIT 1
528
529/* Define to 1 if you have the `getrusage' function. */
530/* #undef HAVE_GETRUSAGE */
531
532/* Define to 1 if you have the `gettimeofday' function. */
533#define HAVE_GETTIMEOFDAY 1
534
535/* Define to 1 if you have the `getttyent' function. */
536#define HAVE_GETTTYENT 1
537
538/* Define to 1 if you have the `getutent' function. */
539/* #undef HAVE_GETUTENT */
540
541/* Define to 1 if you have the `getutid' function. */
542/* #undef HAVE_GETUTID */
543
544/* Define to 1 if you have the `getutline' function. */
545/* #undef HAVE_GETUTLINE */
546
547/* Define to 1 if you have the `getutxent' function. */
548/* #undef HAVE_GETUTXENT */
549
550/* Define to 1 if you have the `getutxid' function. */
551/* #undef HAVE_GETUTXID */
552
553/* Define to 1 if you have the `getutxline' function. */
554/* #undef HAVE_GETUTXLINE */
555
556/* Define to 1 if you have the `glob' function. */
557#define HAVE_GLOB 1
558
559/* Define to 1 if you have the <glob.h> header file. */
560#define HAVE_GLOB_H 1
561
562/* Define to 1 if you have the <gssapi.h> header file. */
563/* #undef HAVE_GSSAPI_H */
564
565/* Define to 1 if you have the <ia.h> header file. */
566/* #undef HAVE_IA_H */
567
568/* Define to 1 if you have the `inet_aton' function. */
569#define HAVE_INET_ATON 1
570
571/* Define to 1 if you have the `inet_ntoa' function. */
572#define HAVE_INET_NTOA 1
573
574/* Define to 1 if you have the `inet_ntop' function. */
575#define HAVE_INET_NTOP 1
576
577/* Define to 1 if you have the `innetgr' function. */
578#define HAVE_INNETGR 1
579
580/* Define to 1 if you have the <inttypes.h> header file. */
581#define HAVE_INTTYPES_H 1
582
583/* Define to 1 if you have the <lastlog.h> header file. */
584/* #undef HAVE_LASTLOG_H */
585
586/* Define to 1 if you have the `crypt' library (-lcrypt). */
587/* #undef HAVE_LIBCRYPT */
588
589/* Define to 1 if you have the `dl' library (-ldl). */
590/* #undef HAVE_LIBDL */
591
592/* Define to 1 if you have the <libgen.h> header file. */
593#define HAVE_LIBGEN_H 1
594
595/* Define to 1 if you have the `nsl' library (-lnsl). */
596/* #undef HAVE_LIBNSL */
597
598/* Define to 1 if you have the `pam' library (-lpam). */
599#define HAVE_LIBPAM 1
600
601/* Define to 1 if you have the `sectok' library (-lsectok). */
602/* #undef HAVE_LIBSECTOK */
603
604/* Define to 1 if you have the `socket' library (-lsocket). */
605/* #undef HAVE_LIBSOCKET */
606
607/* Define to 1 if you have the <libutil.h> header file. */
608#define HAVE_LIBUTIL_H 1
609
610/* Define to 1 if you have the `xnet' library (-lxnet). */
611/* #undef HAVE_LIBXNET */
612
613/* Define to 1 if you have the `z' library (-lz). */
614#define HAVE_LIBZ 1
615
616/* Define to 1 if you have the <limits.h> header file. */
617#define HAVE_LIMITS_H 1
618
619/* Define to 1 if you have the <login_cap.h> header file. */
620#define HAVE_LOGIN_CAP_H 1
621
622/* Define to 1 if you have the `login_getcapbool' function. */
623#define HAVE_LOGIN_GETCAPBOOL 1
624
625/* Define to 1 if you have the <login.h> header file. */
626/* #undef HAVE_LOGIN_H */
627
628/* Define to 1 if you have the `logout' function. */
629#define HAVE_LOGOUT 1
630
631/* Define to 1 if you have the `logwtmp' function. */
632#define HAVE_LOGWTMP 1
633
634/* Define to 1 if you have the <maillock.h> header file. */
635/* #undef HAVE_MAILLOCK_H */
636
637/* Define to 1 if you have the `md5_crypt' function. */
638/* #undef HAVE_MD5_CRYPT */
639
640/* Define to 1 if you have the `memmove' function. */
641#define HAVE_MEMMOVE 1
642
643/* Define to 1 if you have the <memory.h> header file. */
644#define HAVE_MEMORY_H 1
645
646/* Define to 1 if you have the `mkdtemp' function. */
647#define HAVE_MKDTEMP 1
648
649/* Define to 1 if you have the `mmap' function. */
650#define HAVE_MMAP 1
651
652/* Define to 1 if you have the <netdb.h> header file. */
653#define HAVE_NETDB_H 1
654
655/* Define to 1 if you have the <netgroup.h> header file. */
656/* #undef HAVE_NETGROUP_H */
657
658/* Define to 1 if you have the <netinet/in_systm.h> header file. */
659#define HAVE_NETINET_IN_SYSTM_H 1
660
661/* Define to 1 if you have the `ngetaddrinfo' function. */
662/* #undef HAVE_NGETADDRINFO */
663
664/* Define to 1 if you have the `nsleep' function. */
665/* #undef HAVE_NSLEEP */
666
667/* Define to 1 if you have the `ogetaddrinfo' function. */
668/* #undef HAVE_OGETADDRINFO */
669
670/* Define to 1 if you have the `openlog_r' function. */
671/* #undef HAVE_OPENLOG_R */
672
673/* Define to 1 if you have the `openpty' function. */
674#define HAVE_OPENPTY 1
675
676/* Define to 1 if you have the `pam_getenvlist' function. */
677#define HAVE_PAM_GETENVLIST 1
678
679/* Define to 1 if you have the `pam_putenv' function. */
680#define HAVE_PAM_PUTENV 1
681
682/* Define to 1 if you have the <paths.h> header file. */
683#define HAVE_PATHS_H 1
684
685/* Define to 1 if you have the `pstat' function. */
686/* #undef HAVE_PSTAT */
687
688/* Define to 1 if you have the <pty.h> header file. */
689/* #undef HAVE_PTY_H */
690
691/* Define to 1 if you have the `pututline' function. */
692/* #undef HAVE_PUTUTLINE */
693
694/* Define to 1 if you have the `pututxline' function. */
695/* #undef HAVE_PUTUTXLINE */
696
697/* Define to 1 if you have the `readpassphrase' function. */
698#define HAVE_READPASSPHRASE 1
699
700/* Define to 1 if you have the <readpassphrase.h> header file. */
701#define HAVE_READPASSPHRASE_H 1
702
703/* Define to 1 if you have the `realpath' function. */
704#define HAVE_REALPATH 1
705
706/* Define to 1 if you have the `recvmsg' function. */
707#define HAVE_RECVMSG 1
708
709/* Define to 1 if you have the <rpc/types.h> header file. */
710#define HAVE_RPC_TYPES_H 1
711
712/* Define to 1 if you have the `rresvport_af' function. */
713#define HAVE_RRESVPORT_AF 1
714
715/* Define to 1 if you have the <sectok.h> header file. */
716/* #undef HAVE_SECTOK_H */
717
718/* Define to 1 if you have the <security/pam_appl.h> header file. */
719#define HAVE_SECURITY_PAM_APPL_H 1
720
721/* Define to 1 if you have the `sendmsg' function. */
722#define HAVE_SENDMSG 1
723
724/* Define to 1 if you have the `setauthdb' function. */
725/* #undef HAVE_SETAUTHDB */
726
727/* Define to 1 if you have the `setdtablesize' function. */
728/* #undef HAVE_SETDTABLESIZE */
729
730/* Define to 1 if you have the `setegid' function. */
731#define HAVE_SETEGID 1
732
733/* Define to 1 if you have the `setenv' function. */
734#define HAVE_SETENV 1
735
736/* Define to 1 if you have the `seteuid' function. */
737#define HAVE_SETEUID 1
738
739/* Define to 1 if you have the `setgroups' function. */
740#define HAVE_SETGROUPS 1
741
742/* Define to 1 if you have the `setlogin' function. */
743#define HAVE_SETLOGIN 1
744
745/* Define to 1 if you have the `setluid' function. */
746/* #undef HAVE_SETLUID */
747
748/* Define to 1 if you have the `setpcred' function. */
749/* #undef HAVE_SETPCRED */
750
751/* Define to 1 if you have the `setproctitle' function. */
752#define HAVE_SETPROCTITLE 1
753
754/* Define to 1 if you have the `setregid' function. */
755#define HAVE_SETREGID 1
756
757/* Define to 1 if you have the `setresgid' function. */
758#define HAVE_SETRESGID 1
759
760/* Define to 1 if you have the `setresuid' function. */
761#define HAVE_SETRESUID 1
762
763/* Define to 1 if you have the `setreuid' function. */
764#define HAVE_SETREUID 1
765
766/* Define to 1 if you have the `setrlimit' function. */
767#define HAVE_SETRLIMIT 1
768
769/* Define to 1 if you have the `setsid' function. */
770#define HAVE_SETSID 1
771
772/* Define to 1 if you have the `setutent' function. */
773/* #undef HAVE_SETUTENT */
774
775/* Define to 1 if you have the `setutxent' function. */
776/* #undef HAVE_SETUTXENT */
777
778/* Define to 1 if you have the `setvbuf' function. */
779#define HAVE_SETVBUF 1
780
781/* Define to 1 if you have the <shadow.h> header file. */
782/* #undef HAVE_SHADOW_H */
783
784/* Define to 1 if you have the `sigaction' function. */
785#define HAVE_SIGACTION 1
786
787/* Define to 1 if you have the `sigvec' function. */
788#define HAVE_SIGVEC 1
789
790/* Define to 1 if the system has the type `sig_atomic_t'. */
791#define HAVE_SIG_ATOMIC_T 1
792
793/* Define to 1 if you have the `snprintf' function. */
794#define HAVE_SNPRINTF 1
795
796/* Define to 1 if you have the `socketpair' function. */
797#define HAVE_SOCKETPAIR 1
798
799/* Define to 1 if you have the <stddef.h> header file. */
800#define HAVE_STDDEF_H 1
801
802/* Define to 1 if you have the <stdint.h> header file. */
803#define HAVE_STDINT_H 1
804
805/* Define to 1 if you have the <stdlib.h> header file. */
806#define HAVE_STDLIB_H 1
807
808/* Define to 1 if you have the `strerror' function. */
809#define HAVE_STRERROR 1
810
811/* Define to 1 if you have the `strftime' function. */
812#define HAVE_STRFTIME 1
813
814/* Define to 1 if you have the <strings.h> header file. */
815#define HAVE_STRINGS_H 1
816
817/* Define to 1 if you have the <string.h> header file. */
818#define HAVE_STRING_H 1
819
820/* Define to 1 if you have the `strlcat' function. */
821#define HAVE_STRLCAT 1
822
823/* Define to 1 if you have the `strlcpy' function. */
824#define HAVE_STRLCPY 1
825
826/* Define to 1 if you have the `strmode' function. */
827#define HAVE_STRMODE 1
828
829/* Define to 1 if you have the `strnvis' function. */
830/* #undef HAVE_STRNVIS */
831
832/* Define to 1 if you have the `strsep' function. */
833#define HAVE_STRSEP 1
834
835/* Define to 1 if `st_blksize' is member of `struct stat'. */
836#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
837
838/* Define to 1 if the system has the type `struct timespec'. */
839#define HAVE_STRUCT_TIMESPEC 1
840
841/* Define to 1 if you have the `sysconf' function. */
842#define HAVE_SYSCONF 1
843
844/* Define to 1 if you have the <sys/audit.h> header file. */
845/* #undef HAVE_SYS_AUDIT_H */
846
847/* Define to 1 if you have the <sys/bitypes.h> header file. */
848/* #undef HAVE_SYS_BITYPES_H */
849
850/* Define to 1 if you have the <sys/bsdtty.h> header file. */
851/* #undef HAVE_SYS_BSDTTY_H */
852
853/* Define to 1 if you have the <sys/cdefs.h> header file. */
854#define HAVE_SYS_CDEFS_H 1
855
856/* Define to 1 if you have the <sys/mman.h> header file. */
857#define HAVE_SYS_MMAN_H 1
858
859/* Define to 1 if you have the <sys/pstat.h> header file. */
860/* #undef HAVE_SYS_PSTAT_H */
861
862/* Define to 1 if you have the <sys/select.h> header file. */
863#define HAVE_SYS_SELECT_H 1
864
865/* Define to 1 if you have the <sys/stat.h> header file. */
866#define HAVE_SYS_STAT_H 1
867
868/* Define to 1 if you have the <sys/stropts.h> header file. */
869/* #undef HAVE_SYS_STROPTS_H */
870
871/* Define to 1 if you have the <sys/strtio.h> header file. */
872/* #undef HAVE_SYS_STRTIO_H */
873
874/* Define to 1 if you have the <sys/sysmacros.h> header file. */
875/* #undef HAVE_SYS_SYSMACROS_H */
876
877/* Define to 1 if you have the <sys/timers.h> header file. */
878#define HAVE_SYS_TIMERS_H 1
879
880/* Define to 1 if you have the <sys/time.h> header file. */
881#define HAVE_SYS_TIME_H 1
882
883/* Define to 1 if you have the <sys/types.h> header file. */
884#define HAVE_SYS_TYPES_H 1
885
886/* Define to 1 if you have the <sys/un.h> header file. */
887#define HAVE_SYS_UN_H 1
888
889/* Define to 1 if you have the `tcgetpgrp' function. */
890#define HAVE_TCGETPGRP 1
891
892/* Define to 1 if you have the `tcsendbreak' function. */
893#define HAVE_TCSENDBREAK 1
894
895/* Define to 1 if you have the `time' function. */
896#define HAVE_TIME 1
897
898/* Define to 1 if you have the <time.h> header file. */
899#define HAVE_TIME_H 1
900
901/* Define to 1 if you have the <tmpdir.h> header file. */
902/* #undef HAVE_TMPDIR_H */
903
904/* Define to 1 if you have the `truncate' function. */
905#define HAVE_TRUNCATE 1
906
907/* Define to 1 if you have the <ttyent.h> header file. */
908#define HAVE_TTYENT_H 1
909
910/* Define to 1 if you have the <unistd.h> header file. */
911#define HAVE_UNISTD_H 1
912
913/* Define to 1 if you have the `updwtmp' function. */
914/* #undef HAVE_UPDWTMP */
915
916/* Define to 1 if you have the <usersec.h> header file. */
917/* #undef HAVE_USERSEC_H */
918
919/* Define to 1 if you have the <util.h> header file. */
920/* #undef HAVE_UTIL_H */
921
922/* Define to 1 if you have the `utimes' function. */
923#define HAVE_UTIMES 1
924
925/* Define to 1 if you have the <utime.h> header file. */
926#define HAVE_UTIME_H 1
927
928/* Define to 1 if you have the `utmpname' function. */
929/* #undef HAVE_UTMPNAME */
930
931/* Define to 1 if you have the `utmpxname' function. */
932/* #undef HAVE_UTMPXNAME */
933
934/* Define to 1 if you have the <utmpx.h> header file. */
935/* #undef HAVE_UTMPX_H */
936
937/* Define to 1 if you have the <utmp.h> header file. */
938#define HAVE_UTMP_H 1
939
940/* Define to 1 if you have the `vhangup' function. */
941/* #undef HAVE_VHANGUP */
942
943/* Define to 1 if you have the <vis.h> header file. */
944#define HAVE_VIS_H 1
945
946/* Define to 1 if you have the `vsnprintf' function. */
947#define HAVE_VSNPRINTF 1
948
949/* Define to 1 if you have the `waitpid' function. */
950#define HAVE_WAITPID 1
951
952/* Define to 1 if you have the `_getlong' function. */
953/* #undef HAVE__GETLONG */
954
955/* Define to 1 if you have the `_getpty' function. */
956/* #undef HAVE__GETPTY */
957
958/* Define to 1 if you have the `_getshort' function. */
959/* #undef HAVE__GETSHORT */
960
961/* Define to 1 if you have the `__b64_ntop' function. */
962#define HAVE___B64_NTOP 1
963
964/* Define to 1 if you have the `__b64_pton' function. */
965#define HAVE___B64_PTON 1
966
967/* Define to the address where bug reports for this package should be sent. */
968#define PACKAGE_BUGREPORT ""
969
970/* Define to the full name of this package. */
971#define PACKAGE_NAME ""
972
973/* Define to the full name and version of this package. */
974#define PACKAGE_STRING ""
975
976/* Define to the one symbol short name of this package. */
977#define PACKAGE_TARNAME ""
978
979/* Define to the version of this package. */
980#define PACKAGE_VERSION ""
981
982/* The size of a `char', as computed by sizeof. */
983#define SIZEOF_CHAR 1
984
985/* The size of a `int', as computed by sizeof. */
986#define SIZEOF_INT 4
987
988/* The size of a `long int', as computed by sizeof. */
989#define SIZEOF_LONG_INT 4
990
991/* The size of a `long long int', as computed by sizeof. */
992#define SIZEOF_LONG_LONG_INT 8
993
994/* The size of a `short int', as computed by sizeof. */
995#define SIZEOF_SHORT_INT 2
996
997/* Define to 1 if you have the ANSI C header files. */
998#define STDC_HEADERS 1
999
1000/* Define to 1 if your processor stores words with the most significant byte
1001   first (like Motorola and SPARC, unlike Intel and VAX). */
1002/* #undef WORDS_BIGENDIAN */
1003
1004/* Number of bits in a file offset, on hosts where this is settable. */
1005/* #undef _FILE_OFFSET_BITS */
1006
1007/* Define for large files, on AIX-style hosts. */
1008/* #undef _LARGE_FILES */
1009
1010/* Define as `__inline' if that's what the C compiler calls it, or to nothing
1011   if it is not supported. */
1012/* #undef inline */
1013
1014/* type to use in place of socklen_t if not defined */
1015/* #undef socklen_t */
1016
1017/* ******************* Shouldn't need to edit below this line ************** */
1018
1019#endif /* _CONFIG_H */
1020