summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/include/config.h.in
blob: a2e7daeebc021e832f91094917fb22dbbfcc2c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
/* include/config.h.in.  Generated from configure.ac by autoheader.  */

#ifndef RCSID
#define RCSID(msg) \
static /**/const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg }
#endif

/* Maximum values on all known systems */
#define MaxHostNameLen (64+4)
#define MaxPathLen (1024+4)



#ifdef BUILD_KRB5_LIB
#ifndef KRB5_LIB
#ifdef _WIN32_
#define KRB5_LIB_FUNCTION __declspec(dllexport)
#define KRB5_LIB_CALL __stdcall
#define KRB5_LIB_VARIABLE __declspec(dllexport)
#else
#define KRB5_LIB_FUNCTION
#define KRB5_LIB_CALL
#define KRB5_LIB_VARIABLE
#endif
#endif
#endif


#ifdef BUILD_ROKEN_LIB
#ifndef ROKEN_LIB
#ifdef _WIN32_
#define ROKEN_LIB_FUNCTION __declspec(dllexport)
#define ROKEN_LIB_CALL __stdcall
#define ROKEN_LIB_VARIABLE __declspec(dllexport)
#else
#define ROKEN_LIB_FUNCTION
#define ROKEN_LIB_CALL
#define ROKEN_LIB_VARIABLE
#endif
#endif
#endif


#ifdef BUILD_GSSAPI_LIB
#ifndef GSSAPI_LIB
#ifdef _WIN32_
#define GSSAPI_LIB_FUNCTION __declspec(dllexport)
#define GSSAPI_LIB_CALL __stdcall
#define GSSAPI_LIB_VARIABLE __declspec(dllexport)
#else
#define GSSAPI_LIB_FUNCTION
#define GSSAPI_LIB_CALL
#define GSSAPI_LIB_VARIABLE
#endif
#endif
#endif


/* Define if you want authentication support in telnet. */
#undef AUTHENTICATION

/* path to bin */
#undef BINDIR

/* Define if realloc(NULL) doesn't work. */
#undef BROKEN_REALLOC

/* Define if you want support for DCE/DFS PAG's. */
#undef DCE

/* Define if you want to use DES encryption in telnet. */
#undef DES_ENCRYPTION

/* Define this to enable diagnostics in telnet. */
#undef DIAGNOSTICS

/* Define to enable DIGEST. */
#undef DIGEST

/* Define if want to use the weak AFS string to key functions. */
#undef ENABLE_AFS_STRING_TO_KEY

/* Define if you want have a thread safe libraries */
#undef ENABLE_PTHREAD_SUPPORT

/* Define if you want encryption support in telnet. */
#undef ENCRYPTION

/* define if sys/param.h defines the endiness */
#undef ENDIANESS_IN_SYS_PARAM_H

/* Define this if you want support for broken ENV_{VAR,VAL} telnets. */
#undef ENV_HACK

/* define if prototype of gethostbyaddr is compatible with struct hostent
   *gethostbyaddr(const void *, size_t, int) */
#undef GETHOSTBYADDR_PROTO_COMPATIBLE

/* define if prototype of gethostbyname is compatible with struct hostent
   *gethostbyname(const char *) */
#undef GETHOSTBYNAME_PROTO_COMPATIBLE

/* define if prototype of getservbyname is compatible with struct servent
   *getservbyname(const char *, const char *) */
#undef GETSERVBYNAME_PROTO_COMPATIBLE

/* define if prototype of getsockname is compatible with int getsockname(int,
   struct sockaddr*, socklen_t*) */
#undef GETSOCKNAME_PROTO_COMPATIBLE

/* Define if you have the `altzone' variable. */
#undef HAVE_ALTZONE

/* Define to 1 if you have the `arc4random' function. */
#undef HAVE_ARC4RANDOM

/* Define to 1 if you have the <arpa/ftp.h> header file. */
#undef HAVE_ARPA_FTP_H

/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H

/* Define to 1 if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H

/* Define to 1 if you have the <arpa/telnet.h> header file. */
#undef HAVE_ARPA_TELNET_H

/* Define to 1 if you have the <asl.h> header file. */
#undef HAVE_ASL_H

/* Define to 1 if you have the `asnprintf' function. */
#undef HAVE_ASNPRINTF

/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF

/* Define to 1 if you have the `atexit' function. */
#undef HAVE_ATEXIT

/* Define to 1 if you have the `backtrace' function. */
#undef HAVE_BACKTRACE

/* Define to 1 if you have the <bind/bitypes.h> header file. */
#undef HAVE_BIND_BITYPES_H

/* Define to 1 if you have the <bsdsetjmp.h> header file. */
#undef HAVE_BSDSETJMP_H

/* Define to 1 if you have the `bswap16' function. */
#undef HAVE_BSWAP16

/* Define to 1 if you have the `bswap32' function. */
#undef HAVE_BSWAP32

/* Define to 1 if you have the <capability.h> header file. */
#undef HAVE_CAPABILITY_H

/* whether capng is available for privilege reduction */
#undef HAVE_CAPNG

/* Define to 1 if you have the `cap_set_proc' function. */
#undef HAVE_CAP_SET_PROC

/* Define to 1 if you have the `cgetent' function. */
#undef HAVE_CGETENT

/* Define if you have the function `chown'. */
#undef HAVE_CHOWN

/* Define if you have the function `closefrom'. */
#undef HAVE_CLOSEFROM

/* Define to 1 if you have the <CommonCrypto/CommonCryptor.h> header file. */
#undef HAVE_COMMONCRYPTO_COMMONCRYPTOR_H

/* Define to 1 if you have the <CommonCrypto/CommonDigest.h> header file. */
#undef HAVE_COMMONCRYPTO_COMMONDIGEST_H

/* Define to 1 if you have the <config.h> header file. */
#undef HAVE_CONFIG_H

/* Define if you have the function `copyhostent'. */
#undef HAVE_COPYHOSTENT

/* Define to 1 if you have the `crypt' function. */
#undef HAVE_CRYPT

/* Define to 1 if you have the <crypt.h> header file. */
#undef HAVE_CRYPT_H

/* Define to 1 if you have the <curses.h> header file. */
#undef HAVE_CURSES_H

/* Define if you have the function `daemon'. */
#undef HAVE_DAEMON

/* define if you have a berkeley db1/2 library */
#undef HAVE_DB1

/* define if you have a berkeley db3/4/5 library */
#undef HAVE_DB3

/* Define to 1 if you have the <db3/db.h> header file. */
#undef HAVE_DB3_DB_H

/* Define to 1 if you have the <db4/db.h> header file. */
#undef HAVE_DB4_DB_H

/* Define to 1 if you have the <db5/db.h> header file. */
#undef HAVE_DB5_DB_H

/* Define if you have user supplied header location */
#undef HAVE_DBHEADER

/* Define to 1 if you have the `dbm_firstkey' function. */
#undef HAVE_DBM_FIRSTKEY

/* Define to 1 if you have the <dbm.h> header file. */
#undef HAVE_DBM_H

/* Define to 1 if you have the `dbopen' function. */
#undef HAVE_DBOPEN

/* Define to 1 if you have the `db_create' function. */
#undef HAVE_DB_CREATE

/* Define to 1 if you have the <db.h> header file. */
#undef HAVE_DB_H

/* define if you have ndbm compat in db */
#undef HAVE_DB_NDBM

/* Define to 1 if you have the declaration of `altzone', and to 0 if you
   don't. */
#undef HAVE_DECL_ALTZONE

/* Define to 1 if you have the declaration of `environ', and to 0 if you
   don't. */
#undef HAVE_DECL_ENVIRON

/* Define to 1 if you have the declaration of `h_errlist', and to 0 if you
   don't. */
#undef HAVE_DECL_H_ERRLIST

/* Define to 1 if you have the declaration of `h_errno', and to 0 if you
   don't. */
#undef HAVE_DECL_H_ERRNO

/* Define to 1 if you have the declaration of `h_nerr', and to 0 if you don't.
   */
#undef HAVE_DECL_H_NERR

/* Define to 1 if you have the declaration of `optarg', and to 0 if you don't.
   */
#undef HAVE_DECL_OPTARG

/* Define to 1 if you have the declaration of `opterr', and to 0 if you don't.
   */
#undef HAVE_DECL_OPTERR

/* Define to 1 if you have the declaration of `optind', and to 0 if you don't.
   */
#undef HAVE_DECL_OPTIND

/* Define to 1 if you have the declaration of `optopt', and to 0 if you don't.
   */
#undef HAVE_DECL_OPTOPT

/* Define to 1 if you have the declaration of `timezone', and to 0 if you
   don't. */
#undef HAVE_DECL_TIMEZONE

/* Define to 1 if you have the declaration of `_res', and to 0 if you don't.
   */
#undef HAVE_DECL__RES

/* Define to 1 if you have the declaration of `__progname', and to 0 if you
   don't. */
#undef HAVE_DECL___PROGNAME

/* Define to 1 if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H

/* have a dirfd function/macro */
#undef HAVE_DIRFD

/* Define if DIR has field dd_fd. */
#undef HAVE_DIR_DD_FD

/* Define to 1 if you have the `dispatch_async_f' function. */
#undef HAVE_DISPATCH_ASYNC_F

/* Define to 1 if you have the <dispatch/dispatch.h> header file. */
#undef HAVE_DISPATCH_DISPATCH_H

/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H

/* Define to 1 if you have the `dlopen' function. */
#undef HAVE_DLOPEN

/* Define to 1 if you have the <dns.h> header file. */
#undef HAVE_DNS_H

/* Define to 1 if you have the `dns_search' function. */
#undef HAVE_DNS_SEARCH

/* Define to 1 if you have the `dn_expand' function. */
#undef HAVE_DN_EXPAND

/* Define to 1 if you have the `door_create' function. */
#undef HAVE_DOOR_CREATE

/* Define if you have the function `ecalloc'. */
#undef HAVE_ECALLOC

/* Define if you have the function `emalloc'. */
#undef HAVE_EMALLOC

/* Define if you have the function `erealloc'. */
#undef HAVE_EREALLOC

/* Define if you have the function `err'. */
#undef HAVE_ERR

/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H

/* Define if you have the function `errx'. */
#undef HAVE_ERRX

/* Define to 1 if you have the <err.h> header file. */
#undef HAVE_ERR_H

/* Define if you have the function `estrdup'. */
#undef HAVE_ESTRDUP

/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H

/* Define if you have the function `fchown'. */
#undef HAVE_FCHOWN

/* Define to 1 if you have the `fcntl' function. */
#undef HAVE_FCNTL

/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H

/* Define if you have the function `flock'. */
#undef HAVE_FLOCK

/* Define if you have the function `fnmatch'. */
#undef HAVE_FNMATCH

/* Define to 1 if you have the <fnmatch.h> header file. */
#undef HAVE_FNMATCH_H

/* Have -framework Security */
#undef HAVE_FRAMEWORK_SECURITY

/* Define to 1 if you have the `freeaddrinfo' function. */
#undef HAVE_FREEADDRINFO

/* Define if you have the function `freehostent'. */
#undef HAVE_FREEHOSTENT

/* Define to 1 if you have the `gai_strerror' function. */
#undef HAVE_GAI_STRERROR

/* Define if os support gcd. */
#undef HAVE_GCD

/* Define to 1 if you have the <gdbm/ndbm.h> header file. */
#undef HAVE_GDBM_NDBM_H

/* Define to 1 if you have the `getaddrinfo' function. */
#undef HAVE_GETADDRINFO

/* Define to 1 if you have the `getconfattr' function. */
#undef HAVE_GETCONFATTR

/* Define if you have the function `getcwd'. */
#undef HAVE_GETCWD

/* Define if you have the function `getdtablesize'. */
#undef HAVE_GETDTABLESIZE

/* Define if you have the function `getegid'. */
#undef HAVE_GETEGID

/* Define if you have the function `geteuid'. */
#undef HAVE_GETEUID

/* Define if you have the function `getgid'. */
#undef HAVE_GETGID

/* Define to 1 if you have the `gethostbyname' function. */
#undef HAVE_GETHOSTBYNAME

/* Define to 1 if you have the `gethostbyname2' function. */
#undef HAVE_GETHOSTBYNAME2

/* Define if you have the function `gethostname'. */
#undef HAVE_GETHOSTNAME

/* Define if you have the function `getifaddrs'. */
#undef HAVE_GETIFADDRS

/* Define if you have the function `getipnodebyaddr'. */
#undef HAVE_GETIPNODEBYADDR

/* Define if you have the function `getipnodebyname'. */
#undef HAVE_GETIPNODEBYNAME

/* Define to 1 if you have the `getlogin' function. */
#undef HAVE_GETLOGIN

/* Define if you have a working getmsg. */
#undef HAVE_GETMSG

/* Define to 1 if you have the `getnameinfo' function. */
#undef HAVE_GETNAMEINFO

/* Define if you have the function `getopt'. */
#undef HAVE_GETOPT

/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE

/* Define to 1 if you have the `getpeereid' function. */
#undef HAVE_GETPEEREID

/* Define to 1 if you have the `getpeerucred' function. */
#undef HAVE_GETPEERUCRED

/* Define to 1 if you have the `getprogname' function. */
#undef HAVE_GETPROGNAME

/* Define to 1 if you have the `getpwnam_r' function. */
#undef HAVE_GETPWNAM_R

/* Define to 1 if you have the `getrlimit' function. */
#undef HAVE_GETRLIMIT

/* Define to 1 if you have the `getsockopt' function. */
#undef HAVE_GETSOCKOPT

/* Define to 1 if you have the `getspnam' function. */
#undef HAVE_GETSPNAM

/* Define if you have the function `gettimeofday'. */
#undef HAVE_GETTIMEOFDAY

/* Define to 1 if you have the `getudbnam' function. */
#undef HAVE_GETUDBNAM

/* Define if you have the function `getuid'. */
#undef HAVE_GETUID

/* Define if you have the function `getusershell'. */
#undef HAVE_GETUSERSHELL

/* define if you have a glob() that groks GLOB_BRACE, GLOB_NOCHECK,
   GLOB_QUOTE, GLOB_TILDE, and GLOB_LIMIT */
#undef HAVE_GLOB

/* Define to 1 if you have the `grantpt' function. */
#undef HAVE_GRANTPT

/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H

/* Define to 1 if you have the `hstrerror' function. */
#undef HAVE_HSTRERROR

/* Define if you have the `h_errlist' variable. */
#undef HAVE_H_ERRLIST

/* Define if you have the `h_errno' variable. */
#undef HAVE_H_ERRNO

/* Define if you have the `h_nerr' variable. */
#undef HAVE_H_NERR

/* Define to 1 if you have the <ifaddrs.h> header file. */
#undef HAVE_IFADDRS_H

/* Define if you have the in6addr_loopback variable */
#undef HAVE_IN6ADDR_LOOPBACK

/* define */
#undef HAVE_INET_ATON

/* define */
#undef HAVE_INET_NTOP

/* define */
#undef HAVE_INET_PTON

/* Define if you have the function `initgroups'. */
#undef HAVE_INITGROUPS

/* Define if you have the function `innetgr'. */
#undef HAVE_INNETGR

/* Define to 1 if the system has the type `int16_t'. */
#undef HAVE_INT16_T

/* Define to 1 if the system has the type `int32_t'. */
#undef HAVE_INT32_T

/* Define to 1 if the system has the type `int64_t'. */
#undef HAVE_INT64_T

/* Define to 1 if the system has the type `int8_t'. */
#undef HAVE_INT8_T

/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

/* Define to 1 if you have the <io.h> header file. */
#undef HAVE_IO_H

/* Define if you have IPv6. */
#undef HAVE_IPV6

/* Define if you have the function `iruserok'. */
#undef HAVE_IRUSEROK

/* Define to 1 if you have the `issetugid' function. */
#undef HAVE_ISSETUGID

/* Define if you want to use the Kerberos Credentials Manager. */
#undef HAVE_KCM

/* Define to 1 if you have the <libutil.h> header file. */
#undef HAVE_LIBUTIL_H

/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H

/* Define to 1 if you have the `loadquery' function. */
#undef HAVE_LOADQUERY

/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H

/* Define if you have the function `localtime_r'. */
#undef HAVE_LOCALTIME_R

/* Define to 1 if you have the `logout' function. */
#undef HAVE_LOGOUT

/* Define to 1 if you have the `logwtmp' function. */
#undef HAVE_LOGWTMP

/* Define to 1 if the system has the type `long long'. */
#undef HAVE_LONG_LONG

/* Define if you have the function `lstat'. */
#undef HAVE_LSTAT

/* Define to 1 if you have the <maillock.h> header file. */
#undef HAVE_MAILLOCK_H

/* Define if you have the function `memmove'. */
#undef HAVE_MEMMOVE

/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H

/* Define if you have the function `mkstemp'. */
#undef HAVE_MKSTEMP

/* Define to 1 if you have the `mktime' function. */
#undef HAVE_MKTIME

/* Define to 1 if you have a working `mmap' system call. */
#undef HAVE_MMAP

/* define if you have a ndbm library */
#undef HAVE_NDBM

/* Define to 1 if you have the <ndbm.h> header file. */
#undef HAVE_NDBM_H

/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H

/* Define to 1 if you have the <netgroup.h> header file. */
#undef HAVE_NETGROUP_H

/* Define to 1 if you have the <netinet6/in6.h> header file. */
#undef HAVE_NETINET6_IN6_H

/* Define to 1 if you have the <netinet6/in6_var.h> header file. */
#undef HAVE_NETINET6_IN6_VAR_H

/* Define to 1 if you have the <netinet/in6.h> header file. */
#undef HAVE_NETINET_IN6_H

/* Define to 1 if you have the <netinet/in6_machtypes.h> header file. */
#undef HAVE_NETINET_IN6_MACHTYPES_H

/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H

/* Define to 1 if you have the <netinet/in_systm.h> header file. */
#undef HAVE_NETINET_IN_SYSTM_H

/* Define to 1 if you have the <netinet/ip.h> header file. */
#undef HAVE_NETINET_IP_H

/* Define to 1 if you have the <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H

/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H

/* Define if NDBM really is DB (creates files *.db) */
#undef HAVE_NEW_DB

/* Define to 1 if you have the `on_exit' function. */
#undef HAVE_ON_EXIT

/* Define to 1 if you have the `openpty' function. */
#undef HAVE_OPENPTY

/* define to use openssl's libcrypto */
#undef HAVE_OPENSSL

/* Define to enable basic OSF C2 support. */
#undef HAVE_OSFC2

/* Define to 1 if you have the <paths.h> header file. */
#undef HAVE_PATHS_H

/* Define to 1 if you have the `pidfile' function. */
#undef HAVE_PIDFILE

/* Define to 1 if you have the `poll' function. */
#undef HAVE_POLL

/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H

/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H

/* Define to 1 if you have the `ptsname' function. */
#undef HAVE_PTSNAME

/* Define to 1 if you have the <pty.h> header file. */
#undef HAVE_PTY_H

/* Define if you have the function `putenv'. */
#undef HAVE_PUTENV

/* Define to 1 if you have the <pwd.h> header file. */
#undef HAVE_PWD_H

/* Define to 1 if you have the `rand' function. */
#undef HAVE_RAND

/* Define to 1 if you have the `random' function. */
#undef HAVE_RANDOM

/* Define if you have the function `rcmd'. */
#undef HAVE_RCMD

/* Define if you have a readline compatible library. */
#undef HAVE_READLINE

/* Define to 1 if you have the
   <[readline.h])[][]_AH_CHECK_HEADER([readline/readline.h]> header file. */
#undef HAVE_READLINE_H

/* Define to 1 if you have the <readline/readline.h > header file. */
#undef HAVE_READLINE_READLINE_H_

/* Define if you have the function `readv'. */
#undef HAVE_READV

/* Define if you have the function `recvmsg'. */
#undef HAVE_RECVMSG

/* Define to 1 if you have the <resolv.h> header file. */
#undef HAVE_RESOLV_H

/* Define to 1 if you have the `res_ndestroy' function. */
#undef HAVE_RES_NDESTROY

/* Define to 1 if you have the `res_nsearch' function. */
#undef HAVE_RES_NSEARCH

/* Define to 1 if you have the `res_search' function. */
#undef HAVE_RES_SEARCH

/* Define to 1 if you have the `revoke' function. */
#undef HAVE_REVOKE

/* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */
#undef HAVE_RPCSVC_YPCLNT_H

/* Define to 1 if you have the <sac.h> header file. */
#undef HAVE_SAC_H

/* Define to 1 if the system has the type `sa_family_t'. */
#undef HAVE_SA_FAMILY_T

/* Define if you want support for cache in sqlite. */
#undef HAVE_SCC

/* Define to 1 if you have the <search.h> header file. */
#undef HAVE_SEARCH_H

/* Define to 1 if you have the <security/pam_modules.h> header file. */
#undef HAVE_SECURITY_PAM_MODULES_H

/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT

/* Define if you have the function `sendmsg'. */
#undef HAVE_SENDMSG

/* Define if you have the function `setegid'. */
#undef HAVE_SETEGID

/* Define if you have the function `setenv'. */
#undef HAVE_SETENV

/* Define if you have the function `seteuid'. */
#undef HAVE_SETEUID

/* Define to 1 if you have the `setitimer' function. */
#undef HAVE_SETITIMER

/* Define to 1 if you have the `setlim' function. */
#undef HAVE_SETLIM

/* Define to 1 if you have the `setlogin' function. */
#undef HAVE_SETLOGIN

/* Define to 1 if you have the `setpcred' function. */
#undef HAVE_SETPCRED

/* Define to 1 if you have the `setpgid' function. */
#undef HAVE_SETPGID

/* Define to 1 if you have the `setproctitle' function. */
#undef HAVE_SETPROCTITLE

/* Define to 1 if you have the `setprogname' function. */
#undef HAVE_SETPROGNAME

/* Define to 1 if you have the `setregid' function. */
#undef HAVE_SETREGID

/* Define to 1 if you have the `setresgid' function. */
#undef HAVE_SETRESGID

/* Define to 1 if you have the `setresuid' function. */
#undef HAVE_SETRESUID

/* Define to 1 if you have the `setreuid' function. */
#undef HAVE_SETREUID

/* Define to 1 if you have the `setsid' function. */
#undef HAVE_SETSID

/* Define to 1 if you have the `setsockopt' function. */
#undef HAVE_SETSOCKOPT

/* Define to 1 if you have the `setutent' function. */
#undef HAVE_SETUTENT

/* Define to 1 if you have the `sgi_getcapabilitybyname' function. */
#undef HAVE_SGI_GETCAPABILITYBYNAME

/* Define to 1 if you have the <sgtty.h> header file. */
#undef HAVE_SGTTY_H

/* Define to 1 if you have the <shadow.h> header file. */
#undef HAVE_SHADOW_H

/* Define to 1 if you have the <siad.h> header file. */
#undef HAVE_SIAD_H

/* Define to 1 if you have the `sigaction' function. */
#undef HAVE_SIGACTION

/* Define to 1 if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H

/* define if you have a working snprintf */
#undef HAVE_SNPRINTF

/* Define to 1 if you have the `socket' function. */
#undef HAVE_SOCKET

/* Define to 1 if the system has the type `socklen_t'. */
#undef HAVE_SOCKLEN_T

/* Define if you want support for sqlite in Heimdal. */
#undef HAVE_SQLITE3

/* Define to 1 if the system has the type `ssize_t'. */
#undef HAVE_SSIZE_T

/* Define to 1 if you have the <standards.h> header file. */
#undef HAVE_STANDARDS_H

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define if you have the function `strcasecmp'. */
#undef HAVE_STRCASECMP

/* Define if you have the function `strdup'. */
#undef HAVE_STRDUP

/* Define if you have the function `strerror'. */
#undef HAVE_STRERROR

/* Define if you have the function strerror_r. */
#undef HAVE_STRERROR_R

/* Define if you have the function `strftime'. */
#undef HAVE_STRFTIME

/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H

/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H

/* Define if you have the function `strlcat'. */
#undef HAVE_STRLCAT

/* Define if you have the function `strlcpy'. */
#undef HAVE_STRLCPY

/* Define if you have the function `strlwr'. */
#undef HAVE_STRLWR

/* Define if you have the function `strncasecmp'. */
#undef HAVE_STRNCASECMP

/* Define if you have the function `strndup'. */
#undef HAVE_STRNDUP

/* Define if you have the function `strnlen'. */
#undef HAVE_STRNLEN

/* Define to 1 if you have the <stropts.h> header file. */
#undef HAVE_STROPTS_H

/* Define if you have the function `strptime'. */
#undef HAVE_STRPTIME

/* Define if you have the function `strsep'. */
#undef HAVE_STRSEP

/* Define if you have the function `strsep_copy'. */
#undef HAVE_STRSEP_COPY

/* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR

/* Define to 1 if you have the `strsvis' function. */
#undef HAVE_STRSVIS

/* Define to 1 if you have the `strsvisx' function. */
#undef HAVE_STRSVISX

/* Define if you have the function `strtok_r'. */
#undef HAVE_STRTOK_R

/* Define to 1 if the system has the type `struct addrinfo'. */
#undef HAVE_STRUCT_ADDRINFO

/* Define to 1 if the system has the type `struct ifaddrs'. */
#undef HAVE_STRUCT_IFADDRS

/* Define to 1 if the system has the type `struct iovec'. */
#undef HAVE_STRUCT_IOVEC

/* Define to 1 if the system has the type `struct msghdr'. */
#undef HAVE_STRUCT_MSGHDR

/* Define to 1 if the system has the type `struct sockaddr'. */
#undef HAVE_STRUCT_SOCKADDR

/* Define if struct sockaddr has field sa_len. */
#undef HAVE_STRUCT_SOCKADDR_SA_LEN

/* Define to 1 if the system has the type `struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE

/* define if you have struct spwd */
#undef HAVE_STRUCT_SPWD

/* Define if struct tm has field tm_gmtoff. */
#undef HAVE_STRUCT_TM_TM_GMTOFF

/* Define if struct tm has field tm_zone. */
#undef HAVE_STRUCT_TM_TM_ZONE

/* Define if struct utmpx has field ut_exit. */
#undef HAVE_STRUCT_UTMPX_UT_EXIT

/* Define if struct utmpx has field ut_host. */
#undef HAVE_STRUCT_UTMPX_UT_HOST

/* Define if struct utmpx has field ut_id. */
#undef HAVE_STRUCT_UTMPX_UT_ID

/* Define if struct utmpx has field ut_line. */
#undef HAVE_STRUCT_UTMPX_UT_LINE

/* Define if struct utmpx has field ut_pid. */
#undef HAVE_STRUCT_UTMPX_UT_PID

/* Define if struct utmpx has field ut_syslen. */
#undef HAVE_STRUCT_UTMPX_UT_SYSLEN

/* Define if struct utmpx has field ut_tv. */
#undef HAVE_STRUCT_UTMPX_UT_TV

/* Define if struct utmpx has field ut_type. */
#undef HAVE_STRUCT_UTMPX_UT_TYPE

/* Define if struct utmpx has field ut_user. */
#undef HAVE_STRUCT_UTMPX_UT_USER

/* Define if struct utmp has field ut_addr. */
#undef HAVE_STRUCT_UTMP_UT_ADDR

/* Define if struct utmp has field ut_host. */
#undef HAVE_STRUCT_UTMP_UT_HOST

/* Define if struct utmp has field ut_id. */
#undef HAVE_STRUCT_UTMP_UT_ID

/* Define if struct utmp has field ut_pid. */
#undef HAVE_STRUCT_UTMP_UT_PID

/* Define if struct utmp has field ut_type. */
#undef HAVE_STRUCT_UTMP_UT_TYPE

/* Define if struct utmp has field ut_user. */
#undef HAVE_STRUCT_UTMP_UT_USER

/* define if struct winsize is declared in sys/termios.h */
#undef HAVE_STRUCT_WINSIZE

/* Define to 1 if you have the `strunvis' function. */
#undef HAVE_STRUNVIS

/* Define if you have the function `strupr'. */
#undef HAVE_STRUPR

/* Define to 1 if you have the `strvis' function. */
#undef HAVE_STRVIS

/* Define to 1 if you have the `strvisx' function. */
#undef HAVE_STRVISX

/* Define to 1 if you have the `svis' function. */
#undef HAVE_SVIS

/* Define if you have the function `swab'. */
#undef HAVE_SWAB

/* Define to 1 if you have the `sysconf' function. */
#undef HAVE_SYSCONF

/* Define to 1 if you have the `sysctl' function. */
#undef HAVE_SYSCTL

/* Define to 1 if you have the `syslog' function. */
#undef HAVE_SYSLOG

/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H

/* Define to 1 if you have the <sys/bitypes.h> header file. */
#undef HAVE_SYS_BITYPES_H

/* Define to 1 if you have the <sys/bswap.h> header file. */
#undef HAVE_SYS_BSWAP_H

/* Define to 1 if you have the <sys/capability.h> header file. */
#undef HAVE_SYS_CAPABILITY_H

/* Define to 1 if you have the <sys/category.h> header file. */
#undef HAVE_SYS_CATEGORY_H

/* Define to 1 if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H

/* Define to 1 if you have the <sys/filio.h> header file. */
#undef HAVE_SYS_FILIO_H

/* Define to 1 if you have the <sys/ioccom.h> header file. */
#undef HAVE_SYS_IOCCOM_H

/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H

/* Define to 1 if you have the <sys/mman.h> header file. */
#undef HAVE_SYS_MMAN_H

/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H

/* Define to 1 if you have the <sys/proc.h> header file. */
#undef HAVE_SYS_PROC_H

/* Define to 1 if you have the <sys/ptyio.h> header file. */
#undef HAVE_SYS_PTYIO_H

/* Define to 1 if you have the <sys/ptyvar.h> header file. */
#undef HAVE_SYS_PTYVAR_H

/* Define to 1 if you have the <sys/pty.h> header file. */
#undef HAVE_SYS_PTY_H

/* Define to 1 if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H

/* Define to 1 if you have the <sys/select.h> header file. */
#undef HAVE_SYS_SELECT_H

/* Define to 1 if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H

/* Define to 1 if you have the <sys/sockio.h> header file. */
#undef HAVE_SYS_SOCKIO_H

/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H

/* Define to 1 if you have the <sys/stream.h> header file. */
#undef HAVE_SYS_STREAM_H

/* Define to 1 if you have the <sys/stropts.h> header file. */
#undef HAVE_SYS_STROPTS_H

/* Define to 1 if you have the <sys/strtty.h> header file. */
#undef HAVE_SYS_STRTTY_H

/* Define to 1 if you have the <sys/str_tty.h> header file. */
#undef HAVE_SYS_STR_TTY_H

/* Define to 1 if you have the <sys/syscall.h> header file. */
#undef HAVE_SYS_SYSCALL_H

/* Define to 1 if you have the <sys/sysctl.h> header file. */
#undef HAVE_SYS_SYSCTL_H

/* Define to 1 if you have the <sys/termio.h> header file. */
#undef HAVE_SYS_TERMIO_H

/* Define to 1 if you have the <sys/timeb.h> header file. */
#undef HAVE_SYS_TIMEB_H

/* Define to 1 if you have the <sys/times.h> header file. */
#undef HAVE_SYS_TIMES_H

/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H

/* Define to 1 if you have the <sys/tty.h> header file. */
#undef HAVE_SYS_TTY_H

/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H

/* Define to 1 if you have the <sys/ucred.h> header file. */
#undef HAVE_SYS_UCRED_H

/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H

/* Define to 1 if you have the <sys/un.h> header file. */
#undef HAVE_SYS_UN_H

/* Define to 1 if you have the <sys/utsname.h> header file. */
#undef HAVE_SYS_UTSNAME_H

/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H

/* Define to 1 if you have the `tdelete' function. */
#undef HAVE_TDELETE

/* Define to 1 if you have the <termcap.h> header file. */
#undef HAVE_TERMCAP_H

/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H

/* Define to 1 if you have the <termio.h> header file. */
#undef HAVE_TERMIO_H

/* Define to 1 if you have the <term.h> header file. */
#undef HAVE_TERM_H

/* Define to 1 if you have the `tfind' function. */
#undef HAVE_TFIND

/* Define to 1 if you have the `tgetent' function. */
#undef HAVE_TGETENT

/* Define if you have the function `timegm'. */
#undef HAVE_TIMEGM

/* Define if you have the `timezone' variable. */
#undef HAVE_TIMEZONE

/* Define to 1 if you have the <time.h> header file. */
#undef HAVE_TIME_H

/* Define to 1 if you have the <tmpdir.h> header file. */
#undef HAVE_TMPDIR_H

/* Define if you have the function `tsearch'. */
#undef HAVE_TSEARCH

/* Define to 1 if you have the `ttyname' function. */
#undef HAVE_TTYNAME

/* Define to 1 if you have the `ttyslot' function. */
#undef HAVE_TTYSLOT

/* Define to 1 if you have the `twalk' function. */
#undef HAVE_TWALK

/* Define to 1 if you have the <udb.h> header file. */
#undef HAVE_UDB_H

/* Define to 1 if the system has the type `uint16_t'. */
#undef HAVE_UINT16_T

/* Define to 1 if the system has the type `uint32_t'. */
#undef HAVE_UINT32_T

/* Define to 1 if the system has the type `uint64_t'. */
#undef HAVE_UINT64_T

/* Define to 1 if the system has the type `uint8_t'. */
#undef HAVE_UINT8_T

/* Define to 1 if the system has the type `uintptr_t'. */
#undef HAVE_UINTPTR_T

/* Define to 1 if you have the `umask' function. */
#undef HAVE_UMASK

/* Define to 1 if you have the `uname' function. */
#undef HAVE_UNAME

/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H

/* Define to 1 if you have the `unlockpt' function. */
#undef HAVE_UNLOCKPT

/* Define if you have the function `unsetenv'. */
#undef HAVE_UNSETENV

/* Define to 1 if you have the `unvis' function. */
#undef HAVE_UNVIS

/* Define to 1 if you have the <userconf.h> header file. */
#undef HAVE_USERCONF_H

/* Define to 1 if you have the <usersec.h> header file. */
#undef HAVE_USERSEC_H

/* Define to 1 if you have the <util.h> header file. */
#undef HAVE_UTIL_H

/* Define to 1 if you have the <utmpx.h> header file. */
#undef HAVE_UTMPX_H

/* Define to 1 if you have the <utmp.h> header file. */
#undef HAVE_UTMP_H

/* Define to 1 if the system has the type `u_int16_t'. */
#undef HAVE_U_INT16_T

/* Define to 1 if the system has the type `u_int32_t'. */
#undef HAVE_U_INT32_T

/* Define to 1 if the system has the type `u_int64_t'. */
#undef HAVE_U_INT64_T

/* Define to 1 if the system has the type `u_int8_t'. */
#undef HAVE_U_INT8_T

/* Define to 1 if you have the `vasnprintf' function. */
#undef HAVE_VASNPRINTF

/* Define to 1 if you have the `vasprintf' function. */
#undef HAVE_VASPRINTF

/* Define if you have the function `verr'. */
#undef HAVE_VERR

/* Define if you have the function `verrx'. */
#undef HAVE_VERRX

/* Define to 1 if you have the `vhangup' function. */
#undef HAVE_VHANGUP

/* Define to 1 if you have the `vis' function. */
#undef HAVE_VIS

/* Define to 1 if you have the <vis.h> header file. */
#undef HAVE_VIS_H

/* define if you have a working vsnprintf */
#undef HAVE_VSNPRINTF

/* Define if you have the function `vsyslog'. */
#undef HAVE_VSYSLOG

/* Define if you have the function `vwarn'. */
#undef HAVE_VWARN

/* Define if you have the function `vwarnx'. */
#undef HAVE_VWARNX

/* Define if you have the function `warn'. */
#undef HAVE_WARN

/* Define if you have the function `warnx'. */
#undef HAVE_WARNX

/* Define to 1 if you have the <winsock2.h> header file. */
#undef HAVE_WINSOCK2_H

/* Define if you have the function `writev'. */
#undef HAVE_WRITEV

/* Define to 1 if you have the <ws2tcpip.h> header file. */
#undef HAVE_WS2TCPIP_H

/* define if struct winsize has ws_xpixel */
#undef HAVE_WS_XPIXEL

/* define if struct winsize has ws_ypixel */
#undef HAVE_WS_YPIXEL

/* Define to 1 if you have the `XauFileName' function. */
#undef HAVE_XAUFILENAME

/* Define to 1 if you have the `XauReadAuth' function. */
#undef HAVE_XAUREADAUTH

/* Define to 1 if you have the `XauWriteAuth' function. */
#undef HAVE_XAUWRITEAUTH

/* Define to 1 if you have the `yp_get_default_domain' function. */
#undef HAVE_YP_GET_DEFAULT_DOMAIN

/* Define to 1 if you have the `_getpty' function. */
#undef HAVE__GETPTY

/* Define if you have the `_res' variable. */
#undef HAVE__RES

/* Define to 1 if you have the `_scrsize' function. */
#undef HAVE__SCRSIZE

/* define if your compiler has __attribute__ */
#undef HAVE___ATTRIBUTE__

/* Define if you have the `__progname' variable. */
#undef HAVE___PROGNAME

/* have __sync_add_and_fetch */
#undef HAVE___SYNC_ADD_AND_FETCH

/* Define if you want support for weak crypto */
#undef HEIM_WEAK_CRYPTO

/* Define if you have the hesiod package. */
#undef HESIOD

/* Enable Kerberos 5 support in applications. */
#undef KRB5

/* Define to enable kx509. */
#undef KX509

/* path to lib */
#undef LIBDIR

/* Define if you have the libedit package. */
#undef LIBEDIT

/* path to libexec */
#undef LIBEXECDIR

/* Define if you have the libintl package. */
#undef LIBINTL

/* path to localstate */
#undef LOCALSTATEDIR

/* Define to the sub-directory in which libtool stores uninstalled libraries.
   */
#undef LT_OBJDIR

/* define if the system is missing a prototype for asnprintf() */
#undef NEED_ASNPRINTF_PROTO

/* define if the system is missing a prototype for asprintf() */
#undef NEED_ASPRINTF_PROTO

/* define if the system is missing a prototype for crypt() */
#undef NEED_CRYPT_PROTO

/* define if the system is missing a prototype for daemon() */
#undef NEED_DAEMON_PROTO

/* define if the system is missing a prototype for gethostname() */
#undef NEED_GETHOSTNAME_PROTO

/* define if the system is missing a prototype for getusershell() */
#undef NEED_GETUSERSHELL_PROTO

/* define if the system is missing a prototype for glob() */
#undef NEED_GLOB_PROTO

/* define if the system is missing a prototype for hstrerror() */
#undef NEED_HSTRERROR_PROTO

/* define if the system is missing a prototype for inet_aton() */
#undef NEED_INET_ATON_PROTO

/* define if the system is missing a prototype for iruserok() */
#undef NEED_IRUSEROK_PROTO

/* define if the system is missing a prototype for mkstemp() */
#undef NEED_MKSTEMP_PROTO

/* if your qsort is not a stable sort */
#undef NEED_QSORT

/* define if the system is missing a prototype for SecKeyGetCSPHandle() */
#undef NEED_SECKEYGETCSPHANDLE_PROTO

/* define if the system is missing a prototype for setenv() */
#undef NEED_SETENV_PROTO

/* define if the system is missing a prototype for snprintf() */
#undef NEED_SNPRINTF_PROTO

/* define if the system is missing a prototype for strndup() */
#undef NEED_STRNDUP_PROTO

/* define if the system is missing a prototype for strsep() */
#undef NEED_STRSEP_PROTO

/* define if the system is missing a prototype for strsvisx() */
#undef NEED_STRSVISX_PROTO

/* define if the system is missing a prototype for strsvis() */
#undef NEED_STRSVIS_PROTO

/* define if the system is missing a prototype for strtok_r() */
#undef NEED_STRTOK_R_PROTO

/* define if the system is missing a prototype for strunvis() */
#undef NEED_STRUNVIS_PROTO

/* define if the system is missing a prototype for strvisx() */
#undef NEED_STRVISX_PROTO

/* define if the system is missing a prototype for strvis() */
#undef NEED_STRVIS_PROTO

/* define if the system is missing a prototype for svis() */
#undef NEED_SVIS_PROTO

/* define if the system is missing a prototype for unsetenv() */
#undef NEED_UNSETENV_PROTO

/* define if the system is missing a prototype for unvis() */
#undef NEED_UNVIS_PROTO

/* define if the system is missing a prototype for vasnprintf() */
#undef NEED_VASNPRINTF_PROTO

/* define if the system is missing a prototype for vasprintf() */
#undef NEED_VASPRINTF_PROTO

/* define if the system is missing a prototype for vis() */
#undef NEED_VIS_PROTO

/* define if the system is missing a prototype for vsnprintf() */
#undef NEED_VSNPRINTF_PROTO

/* Define if you don't wan't support for AFS. */
#undef NO_AFS

/* Define to 1 if your C compiler doesn't accept -c and -o together. */
#undef NO_MINUS_C_MINUS_O

/* Define if you don't want to use mmap. */
#undef NO_MMAP

/* Define this to enable old environment option in telnet. */
#undef OLD_ENVIRON

/* Define if you have the openldap package. */
#undef OPENLDAP

/* Define if you want support for hdb ldap module */
#undef OPENLDAP_MODULE

/* define if prototype of openlog is compatible with void openlog(const char
   *, int, int) */
#undef OPENLOG_PROTO_COMPATIBLE

/* Define if you want OTP support in applications. */
#undef OTP

/* Name of package */
#undef PACKAGE

/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT

/* Define to the full name of this package. */
#undef PACKAGE_NAME

/* Define to the full name and version of this package. */
#undef PACKAGE_STRING

/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

/* Define to the home page for this package. */
#undef PACKAGE_URL

/* Define to the version of this package. */
#undef PACKAGE_VERSION

/* Define to enable PKINIT. */
#undef PKINIT

/* Define if getlogin has POSIX flavour (and not BSD). */
#undef POSIX_GETLOGIN

/* Define if getpwnam_r has POSIX flavour. */
#undef POSIX_GETPWNAM_R

/* Define if you have the readline package. */
#undef READLINE

/* Define as the return type of signal handlers (`int' or `void'). */
#undef RETSIGTYPE

/* path to sbin */
#undef SBINDIR

/* Define if you want to use samba socket wrappers. */
#undef SOCKET_WRAPPER_REPLACE

/* Define if you have the sqlite3 package. */
#undef SQLITE3

/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS

/* Define if you have streams ptys. */
#undef STREAMSPTY

/* define if prototype of strerror_r is compatible with int strerror_r(int,
   char *, size_t) */
#undef STRERROR_R_PROTO_COMPATIBLE

/* Define if os support want to detach is daemonens. */
#undef SUPPORT_DETACH

/* Enable use of inetd style startup. */
#undef SUPPORT_INETD

/* path to sysconf */
#undef SYSCONFDIR

/* Define to what version of SunOS you are running. */
#undef SunOS

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME

/* Define to 1 if your <sys/time.h> declares `struct tm'. */
#undef TM_IN_SYS_TIME

/* Version number of package */
#undef VERSION

/* Define if signal handlers return void. */
#undef VOID_RETSIGTYPE

/* define if target is big endian */
#undef WORDS_BIGENDIAN

/* Define to 1 if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING

/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
   `char[]'. */
#undef YYTEXT_POINTER

/* Required for functional/sane headers on AIX */
#undef _ALL_SOURCE

/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS

/* Define to enable extensions on glibc-based systems such as Linux. */
#undef _GNU_SOURCE

/* Define for large files, on AIX-style hosts. */
#undef _LARGE_FILES

/* Define to get POSIX getpwnam_r in some systems. */
#undef _POSIX_PTHREAD_SEMANTICS

/* Define to empty if `const' does not conform to ANSI C. */
#undef const

/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
#undef inline
#endif

/* Define this to what the type mode_t should be. */
#undef mode_t

/* Define to `long int' if <sys/types.h> does not define. */
#undef off_t

/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t

/* Path name delimiter */
#undef rk_PATH_DELIM

/* Define this to what the type sig_atomic_t should be. */
#undef sig_atomic_t

/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t

/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t

#if _AIX
/* XXX this is gross, but kills about a gazillion warnings */
struct ether_addr;
struct sockaddr;
struct sockaddr_dl;
struct sockaddr_in;
#endif

#ifdef __APPLE__
#include <AvailabilityMacros.h>
#endif

#ifdef ROKEN_RENAME
#include "roken_rename.h"
#endif

#ifdef VOID_RETSIGTYPE
#define SIGRETURN(x) return
#else
#define SIGRETURN(x) return (RETSIGTYPE)(x)
#endif

#ifdef BROKEN_REALLOC
#define realloc(X, Y) rk_realloc((X), (Y))
#endif


#ifdef ENDIANESS_IN_SYS_PARAM_H
#  include <sys/types.h>
#  include <sys/param.h>
#  if BYTE_ORDER == BIG_ENDIAN
#  define WORDS_BIGENDIAN 1
#  endif
#endif




/* Set this to the default system lead string for telnetd 
 * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
 * %v=os-version, %t=tty, %h=hostname, %d=date and time
 */
#undef USE_IM

/* Used with login -p */
#undef LOGIN_ARGS

/* set this to a sensible login */
#ifndef LOGIN_PATH
#define LOGIN_PATH BINDIR "/login"
#endif

OpenPOWER on IntegriCloud