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