summaryrefslogtreecommitdiff
path: root/source3/include/config.h.in
blob: 62467d3acfca28966c62ca48d71827bd621ed702 (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
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
/* include/config.h.in.  Generated automatically from configure.in by autoheader 2.13.  */

/* Define if type char is unsigned and you are not using gcc.  */
#ifndef __CHAR_UNSIGNED__
#undef __CHAR_UNSIGNED__
#endif

/* Define to empty if the keyword does not work.  */
#undef const

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

/* Define if your struct stat has st_rdev.  */
#undef HAVE_ST_RDEV

/* Define if you have <sys/wait.h> that is POSIX.1 compatible.  */
#undef HAVE_SYS_WAIT_H

/* Define as __inline if that's what the C compiler calls it.  */
#undef inline

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

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

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

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

/* Define if you need to in order for stat and other things to work.  */
#undef _POSIX_SOURCE

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

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

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

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

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

/* Define if your processor stores words with the most significant
   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
#undef WORDS_BIGENDIAN

#undef HAVE_VOLATILE
#undef HAVE_BROKEN_READDIR
#undef HAVE_C99_VSNPRINTF
#undef HAVE_ERRNO_DECL
#undef HAVE_LONGLONG
#undef HAVE_OFF64_T
#undef HAVE_REMSH
#undef HAVE_UNSIGNED_CHAR
#undef HAVE_UTIMBUF
#undef HAVE_SIG_ATOMIC_T_TYPE
#undef HAVE_SOCKLEN_T_TYPE
#undef ssize_t
#undef ino_t
#undef ssize_t
#undef loff_t
#undef offset_t
#undef aclent_t
#undef wchar_t
#undef HAVE_CONNECT
#undef HAVE_SHORT_INO_T
#undef WITH_SMBWRAPPER
#undef WITH_AFS
#undef WITH_DFS
#undef SUNOS5
#undef SUNOS4
#undef LINUX
#undef AIX
#undef BSD
#undef IRIX
#undef UNIXWARE
#undef SYSV
#undef IRIX6
#undef HPUX
#undef QNX
#undef SCO
#undef OSF1
#undef NEXT2
#undef RELIANTUNIX
#undef HAVE_MMAP
#undef HAVE_FCNTL_LOCK
#undef HAVE_FTRUNCATE_EXTEND
#undef FTRUNCATE_NEEDS_ROOT
#undef HAVE_TRAPDOOR_UID
#undef HAVE_ROOT
#undef HAVE_GETTIMEOFDAY_TZ
#undef HAVE_SOCK_SIN_LEN
#undef STAT_READ_FILSYS
#undef STAT_STATFS2_BSIZE
#undef STAT_STATFS2_FSIZE
#undef STAT_STATFS2_FS_DATA
#undef STAT_STATFS3_OSF1
#undef STAT_STATFS4
#undef STAT_STATVFS
#undef STAT_STATVFS64
#undef HAVE_IFACE_AIX
#undef HAVE_IFACE_IFCONF
#undef HAVE_IFACE_IFREQ
#undef HAVE_CRYPT
#undef HAVE_PUTPRPWNAM
#undef HAVE_SET_AUTH_PARAMETERS
#undef WITH_SYSLOG
#undef WITH_PROFILE
#undef WITH_PAM
#undef WITH_NISPLUS_HOME
#undef WITH_AUTOMOUNT
#undef WITH_SMBMOUNT
#undef WITH_QUOTAS
#undef WITH_WINBIND
#undef HAVE_BROKEN_GETGROUPS
#undef REPLACE_GETPASS
#undef REPLACE_INET_NTOA
#undef HAVE_FUNCTION_MACRO
#undef HAVE_VA_COPY
#undef HAVE_SETRESUID_DECL
#undef HAVE_SETRESUID
#undef WITH_NETATALK
#undef WITH_UTMP
#undef WITH_MSDFS
#undef WITH_LIBICONV
#undef HAVE_INO64_T
#undef HAVE_DEV64_T
#undef HAVE_STRUCT_FLOCK64
#undef SIZEOF_INO_T
#undef SIZEOF_OFF_T
#undef STAT_STATVFS64
#undef HAVE_LIBREADLINE
#undef HAVE_KERNEL_SHARE_MODES
#undef HAVE_KERNEL_OPLOCKS_IRIX
#undef HAVE_KERNEL_OPLOCKS_LINUX
#undef HAVE_KERNEL_CHANGE_NOTIFY
#undef HAVE_IRIX_SPECIFIC_CAPABILITIES
#undef HAVE_INT16_FROM_RPC_RPC_H
#undef HAVE_UINT16_FROM_RPC_RPC_H
#undef HAVE_INT32_FROM_RPC_RPC_H
#undef HAVE_UINT32_FROM_RPC_RPC_H
#undef KRB4_AUTH
#undef KRB5_AUTH
#undef KRB4_DIR
#undef KRB5_DIR
#undef SEEKDIR_RETURNS_VOID
#undef HAVE_DIRENT_D_OFF
#undef HAVE_GETSPNAM
#undef HAVE_BIGCRYPT
#undef HAVE_GETPRPWNAM
#undef HAVE_FSTAT64
#undef HAVE_LSTAT64
#undef HAVE_STAT64
#undef HAVE_SETRESGID
#undef HAVE_SETRESGID_DECL
#undef HAVE_SHADOW_H
#undef HAVE_CUPS
#undef HAVE_MEMSET
#undef HAVE_STRCASECMP
#undef HAVE_STRUCT_DIRENT64
#undef HAVE_TRUNCATED_SALT
#undef BROKEN_NISPLUS_INCLUDE_FILES
#undef HAVE_RPC_AUTH_ERROR_CONFLICT
#undef HAVE_EXPLICIT_LARGEFILE_SUPPORT
#undef USE_BOTH_CRYPT_CALLS
#undef HAVE_BROKEN_FCNTL64_LOCKS
#undef HAVE_SECURE_MKSTEMP
#undef HAVE_FNMATCH
#undef USE_SETEUID
#undef USE_SETRESUID
#undef USE_SETREUID
#undef USE_SETUIDX
#undef HAVE_DLOPEN
#undef HAVE_DLCLOSE
#undef HAVE_DLSYM
#undef HAVE_DLERROR
#undef SYSCONF_SC_NGROUPS_MAX
#undef HAVE_UT_UT_NAME
#undef HAVE_UT_UT_USER
#undef HAVE_UT_UT_ID
#undef HAVE_UT_UT_HOST
#undef HAVE_UT_UT_TIME
#undef HAVE_UT_UT_TV
#undef HAVE_UT_UT_TYPE
#undef HAVE_UT_UT_PID
#undef HAVE_UT_UT_EXIT
#undef HAVE_UT_UT_ADDR
#undef HAVE_UX_UT_SYSLEN
#undef PUTUTLINE_RETURNS_UTMP
#undef COMPILER_SUPPORTS_LL
#undef HAVE_YP_GET_DEFAULT_DOMAIN
#undef USE_SPINLOCKS
#undef SPARC_SPINLOCKS
#undef INTEL_SPINLOCKS
#undef MIPS_SPINLOCKS
#undef POWERPC_SPINLOCKS
#undef HAVE_POSIX_ACLS
#undef HAVE_ACL_GET_PERM_NP
#undef HAVE_UNIXWARE_ACLS
#undef HAVE_SOLARIS_ACLS
#undef HAVE_HPUX_ACLS
#undef HAVE_IRIX_ACLS
#undef HAVE_AIX_ACLS
#undef HAVE_TRU64_ACLS
#undef HAVE_NO_ACLS
#undef HAVE_LIBPAM
#undef HAVE_ASPRINTF_DECL
#undef HAVE_VASPRINTF_DECL
#undef HAVE_SNPRINTF_DECL
#undef HAVE_VSNPRINTF_DECL
#undef HAVE_NATIVE_ICONV
#undef HAVE_UNIXSOCKET
#undef MMAP_BLACKLIST
#undef HAVE_IMMEDIATE_STRUCTURES
#undef HAVE_CUPS
#undef WITH_SAM
#undef WITH_LDAP_SAMCONFIG
#undef WITH_NISPLUS_SAM
#undef WITH_TDB_SAM
#undef LINUX_QUOTAS_1
#undef LINUX_QUOTAS_2
#undef PACKAGE
#undef VERSION
#undef HAVE_LC_MESSAGES
#undef ENABLE_NLS
#undef HAVE_CATGETS
#undef HAVE_GETTEXT
#undef HAVE_STPCPY
#undef I18N_SWAT
#undef I18N_DEFAULT_PREF_LANG
#undef HAVE_KRB5
#undef HAVE_GSSAPI
#undef BROKEN_REDHAT_7_SYSTEM_HEADERS
#undef HAVE_LDAP
#undef HAVE_STAT_ST_BLOCKS
#undef STAT_ST_BLOCKSIZE
#undef HAVE_STAT_ST_BLKSIZE
#undef HAVE_DEVICE_MAJOR_FN
#undef HAVE_DEVICE_MINOR_FN
#undef HAVE_PASSWD_PW_COMMENT
#undef HAVE_PASSWD_PW_AGE
/*
 * Add these definitions to allow VFS modules to
 * see the CPPFLAGS defines.
 */
#ifndef _HPUX_SOURCE
#undef _HPUX_SOURCE
#endif
#ifndef _POSIX_SOURCE
#undef _POSIX_SOURCE
#endif
#ifndef _LARGEFILE64_SOURCE
#undef _LARGEFILE64_SOURCE
#endif
#ifndef _ALIGNMENT_REQUIRED
#undef _ALIGNMENT_REQUIRED
#endif
#ifndef _MAX_ALIGNMENT
#undef _MAX_ALIGNMENT
#endif
#ifndef _LARGE_FILES
#undef _LARGE_FILES
#endif
#ifndef _FILE_OFFSET_BITS
#undef _FILE_OFFSET_BITS
#endif
#ifndef _GNU_SOURCE
#undef _GNU_SOURCE
#endif

/* The number of bytes in a int.  */
#undef SIZEOF_INT

/* The number of bytes in a long.  */
#undef SIZEOF_LONG

/* The number of bytes in a short.  */
#undef SIZEOF_SHORT

/* Define if you have the __acl function.  */
#undef HAVE___ACL

/* Define if you have the __chdir function.  */
#undef HAVE___CHDIR

/* Define if you have the __close function.  */
#undef HAVE___CLOSE

/* Define if you have the __closedir function.  */
#undef HAVE___CLOSEDIR

/* Define if you have the __dup function.  */
#undef HAVE___DUP

/* Define if you have the __dup2 function.  */
#undef HAVE___DUP2

/* Define if you have the __facl function.  */
#undef HAVE___FACL

/* Define if you have the __fchdir function.  */
#undef HAVE___FCHDIR

/* Define if you have the __fcntl function.  */
#undef HAVE___FCNTL

/* Define if you have the __fork function.  */
#undef HAVE___FORK

/* Define if you have the __fstat function.  */
#undef HAVE___FSTAT

/* Define if you have the __fstat64 function.  */
#undef HAVE___FSTAT64

/* Define if you have the __fxstat function.  */
#undef HAVE___FXSTAT

/* Define if you have the __getcwd function.  */
#undef HAVE___GETCWD

/* Define if you have the __getdents function.  */
#undef HAVE___GETDENTS

/* Define if you have the __llseek function.  */
#undef HAVE___LLSEEK

/* Define if you have the __lseek function.  */
#undef HAVE___LSEEK

/* Define if you have the __lstat function.  */
#undef HAVE___LSTAT

/* Define if you have the __lstat64 function.  */
#undef HAVE___LSTAT64

/* Define if you have the __lxstat function.  */
#undef HAVE___LXSTAT

/* Define if you have the __open function.  */
#undef HAVE___OPEN

/* Define if you have the __open64 function.  */
#undef HAVE___OPEN64

/* Define if you have the __opendir function.  */
#undef HAVE___OPENDIR

/* Define if you have the __pread function.  */
#undef HAVE___PREAD

/* Define if you have the __pread64 function.  */
#undef HAVE___PREAD64

/* Define if you have the __pwrite function.  */
#undef HAVE___PWRITE

/* Define if you have the __pwrite64 function.  */
#undef HAVE___PWRITE64

/* Define if you have the __read function.  */
#undef HAVE___READ

/* Define if you have the __readdir function.  */
#undef HAVE___READDIR

/* Define if you have the __readdir64 function.  */
#undef HAVE___READDIR64

/* Define if you have the __seekdir function.  */
#undef HAVE___SEEKDIR

/* Define if you have the __stat function.  */
#undef HAVE___STAT

/* Define if you have the __stat64 function.  */
#undef HAVE___STAT64

/* Define if you have the __sys_llseek function.  */
#undef HAVE___SYS_LLSEEK

/* Define if you have the __telldir function.  */
#undef HAVE___TELLDIR

/* Define if you have the __write function.  */
#undef HAVE___WRITE

/* Define if you have the __xstat function.  */
#undef HAVE___XSTAT

/* Define if you have the _acl function.  */
#undef HAVE__ACL

/* Define if you have the _chdir function.  */
#undef HAVE__CHDIR

/* Define if you have the _close function.  */
#undef HAVE__CLOSE

/* Define if you have the _closedir function.  */
#undef HAVE__CLOSEDIR

/* Define if you have the _dup function.  */
#undef HAVE__DUP

/* Define if you have the _dup2 function.  */
#undef HAVE__DUP2

/* Define if you have the _facl function.  */
#undef HAVE__FACL

/* Define if you have the _fchdir function.  */
#undef HAVE__FCHDIR

/* Define if you have the _fcntl function.  */
#undef HAVE__FCNTL

/* Define if you have the _fork function.  */
#undef HAVE__FORK

/* Define if you have the _fstat function.  */
#undef HAVE__FSTAT

/* Define if you have the _fstat64 function.  */
#undef HAVE__FSTAT64

/* Define if you have the _getcwd function.  */
#undef HAVE__GETCWD

/* Define if you have the _getdents function.  */
#undef HAVE__GETDENTS

/* Define if you have the _llseek function.  */
#undef HAVE__LLSEEK

/* Define if you have the _lseek function.  */
#undef HAVE__LSEEK

/* Define if you have the _lstat function.  */
#undef HAVE__LSTAT

/* Define if you have the _lstat64 function.  */
#undef HAVE__LSTAT64

/* Define if you have the _open function.  */
#undef HAVE__OPEN

/* Define if you have the _open64 function.  */
#undef HAVE__OPEN64

/* Define if you have the _opendir function.  */
#undef HAVE__OPENDIR

/* Define if you have the _pread function.  */
#undef HAVE__PREAD

/* Define if you have the _pread64 function.  */
#undef HAVE__PREAD64

/* Define if you have the _pwrite function.  */
#undef HAVE__PWRITE

/* Define if you have the _pwrite64 function.  */
#undef HAVE__PWRITE64

/* Define if you have the _read function.  */
#undef HAVE__READ

/* Define if you have the _readdir function.  */
#undef HAVE__READDIR

/* Define if you have the _readdir64 function.  */
#undef HAVE__READDIR64

/* Define if you have the _seekdir function.  */
#undef HAVE__SEEKDIR

/* Define if you have the _stat function.  */
#undef HAVE__STAT

/* Define if you have the _stat64 function.  */
#undef HAVE__STAT64

/* Define if you have the _telldir function.  */
#undef HAVE__TELLDIR

/* Define if you have the _write function.  */
#undef HAVE__WRITE

/* Define if you have the asprintf function.  */
#undef HAVE_ASPRINTF

/* Define if you have the atexit function.  */
#undef HAVE_ATEXIT

/* Define if you have the bigcrypt function.  */
#undef HAVE_BIGCRYPT

/* Define if you have the bzero function.  */
#undef HAVE_BZERO

/* Define if you have the chmod function.  */
#undef HAVE_CHMOD

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

/* Define if you have the chroot function.  */
#undef HAVE_CHROOT

/* Define if you have the connect function.  */
#undef HAVE_CONNECT

/* Define if you have the creat64 function.  */
#undef HAVE_CREAT64

/* Define if you have the crypt function.  */
#undef HAVE_CRYPT

/* Define if you have the crypt16 function.  */
#undef HAVE_CRYPT16

/* Define if you have the dlclose function.  */
#undef HAVE_DLCLOSE

/* Define if you have the dlerror function.  */
#undef HAVE_DLERROR

/* Define if you have the dlopen function.  */
#undef HAVE_DLOPEN

/* Define if you have the dlsym function.  */
#undef HAVE_DLSYM

/* Define if you have the dup2 function.  */
#undef HAVE_DUP2

/* Define if you have the endnetgrent function.  */
#undef HAVE_ENDNETGRENT

/* Define if you have the execl function.  */
#undef HAVE_EXECL

/* Define if you have the fchmod function.  */
#undef HAVE_FCHMOD

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

/* Define if you have the fcvt function.  */
#undef HAVE_FCVT

/* Define if you have the fcvtl function.  */
#undef HAVE_FCVTL

/* Define if you have the fopen64 function.  */
#undef HAVE_FOPEN64

/* Define if you have the fseek64 function.  */
#undef HAVE_FSEEK64

/* Define if you have the fseeko64 function.  */
#undef HAVE_FSEEKO64

/* Define if you have the fstat function.  */
#undef HAVE_FSTAT

/* Define if you have the fstat64 function.  */
#undef HAVE_FSTAT64

/* Define if you have the fsync function.  */
#undef HAVE_FSYNC

/* Define if you have the ftell64 function.  */
#undef HAVE_FTELL64

/* Define if you have the ftello64 function.  */
#undef HAVE_FTELLO64

/* Define if you have the ftruncate function.  */
#undef HAVE_FTRUNCATE

/* Define if you have the ftruncate64 function.  */
#undef HAVE_FTRUNCATE64

/* Define if you have the getauthuid function.  */
#undef HAVE_GETAUTHUID

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

/* Define if you have the getdents function.  */
#undef HAVE_GETDENTS

/* Define if you have the getgrent function.  */
#undef HAVE_GETGRENT

/* Define if you have the getgrnam function.  */
#undef HAVE_GETGRNAM

/* Define if you have the getgrouplist function.  */
#undef HAVE_GETGROUPLIST

/* Define if you have the getnetgrent function.  */
#undef HAVE_GETNETGRENT

/* Define if you have the getprpwnam function.  */
#undef HAVE_GETPRPWNAM

/* Define if you have the getpwanam function.  */
#undef HAVE_GETPWANAM

/* Define if you have the getrlimit function.  */
#undef HAVE_GETRLIMIT

/* Define if you have the getspnam function.  */
#undef HAVE_GETSPNAM

/* Define if you have the getutmpx function.  */
#undef HAVE_GETUTMPX

/* Define if you have the glob function.  */
#undef HAVE_GLOB

/* Define if you have the grantpt function.  */
#undef HAVE_GRANTPT

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

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

/* Define if you have the ldap_set_rebind_proc function.  */
#undef HAVE_LDAP_SET_REBIND_PROC

/* Define if you have the link function.  */
#undef HAVE_LINK

/* Define if you have the llseek function.  */
#undef HAVE_LLSEEK

/* Define if you have the lseek64 function.  */
#undef HAVE_LSEEK64

/* Define if you have the lstat64 function.  */
#undef HAVE_LSTAT64

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

/* Define if you have the memset function.  */
#undef HAVE_MEMSET

/* Define if you have the mknod function.  */
#undef HAVE_MKNOD

/* Define if you have the mknod64 function.  */
#undef HAVE_MKNOD64

/* Define if you have the mktime function.  */
#undef HAVE_MKTIME

/* Define if you have the open64 function.  */
#undef HAVE_OPEN64

/* Define if you have the pathconf function.  */
#undef HAVE_PATHCONF

/* Define if you have the pipe function.  */
#undef HAVE_PIPE

/* Define if you have the poll function.  */
#undef HAVE_POLL

/* Define if you have the pread function.  */
#undef HAVE_PREAD

/* Define if you have the pread64 function.  */
#undef HAVE_PREAD64

/* Define if you have the putprpwnam function.  */
#undef HAVE_PUTPRPWNAM

/* Define if you have the pututline function.  */
#undef HAVE_PUTUTLINE

/* Define if you have the pututxline function.  */
#undef HAVE_PUTUTXLINE

/* Define if you have the pwrite function.  */
#undef HAVE_PWRITE

/* Define if you have the pwrite64 function.  */
#undef HAVE_PWRITE64

/* Define if you have the rand function.  */
#undef HAVE_RAND

/* Define if you have the random function.  */
#undef HAVE_RANDOM

/* Define if you have the rdchk function.  */
#undef HAVE_RDCHK

/* Define if you have the readdir64 function.  */
#undef HAVE_READDIR64

/* Define if you have the readlink function.  */
#undef HAVE_READLINK

/* Define if you have the realpath function.  */
#undef HAVE_REALPATH

/* Define if you have the rename function.  */
#undef HAVE_RENAME

/* Define if you have the select function.  */
#undef HAVE_SELECT

/* Define if you have the set_auth_parameters function.  */
#undef HAVE_SET_AUTH_PARAMETERS

/* Define if you have the setbuffer function.  */
#undef HAVE_SETBUFFER

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

/* Define if you have the setgidx function.  */
#undef HAVE_SETGIDX

/* Define if you have the setgroups function.  */
#undef HAVE_SETGROUPS

/* Define if you have the setlinebuf function.  */
#undef HAVE_SETLINEBUF

/* Define if you have the setluid function.  */
#undef HAVE_SETLUID

/* Define if you have the setnetgrent function.  */
#undef HAVE_SETNETGRENT

/* Define if you have the setpgid function.  */
#undef HAVE_SETPGID

/* Define if you have the setpriv function.  */
#undef HAVE_SETPRIV

/* Define if you have the setsid function.  */
#undef HAVE_SETSID

/* Define if you have the setuidx function.  */
#undef HAVE_SETUIDX

/* Define if you have the shm_open function.  */
#undef HAVE_SHM_OPEN

/* Define if you have the shmget function.  */
#undef HAVE_SHMGET

/* Define if you have the sigaction function.  */
#undef HAVE_SIGACTION

/* Define if you have the sigblock function.  */
#undef HAVE_SIGBLOCK

/* Define if you have the sigprocmask function.  */
#undef HAVE_SIGPROCMASK

/* Define if you have the sigset function.  */
#undef HAVE_SIGSET

/* Define if you have the snprintf function.  */
#undef HAVE_SNPRINTF

/* Define if you have the srand function.  */
#undef HAVE_SRAND

/* Define if you have the srandom function.  */
#undef HAVE_SRANDOM

/* Define if you have the stat64 function.  */
#undef HAVE_STAT64

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

/* Define if you have the strchr function.  */
#undef HAVE_STRCHR

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

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

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

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

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

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

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

/* Define if you have the strpbrk function.  */
#undef HAVE_STRPBRK

/* Define if you have the strtoul function.  */
#undef HAVE_STRTOUL

/* Define if you have the symlink function.  */
#undef HAVE_SYMLINK

/* Define if you have the syscall function.  */
#undef HAVE_SYSCALL

/* Define if you have the sysconf function.  */
#undef HAVE_SYSCONF

/* Define if you have the syslog function.  */
#undef HAVE_SYSLOG

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

/* Define if you have the updwtmp function.  */
#undef HAVE_UPDWTMP

/* Define if you have the updwtmpx function.  */
#undef HAVE_UPDWTMPX

/* Define if you have the usleep function.  */
#undef HAVE_USLEEP

/* Define if you have the utime function.  */
#undef HAVE_UTIME

/* Define if you have the utimes function.  */
#undef HAVE_UTIMES

/* Define if you have the vasprintf function.  */
#undef HAVE_VASPRINTF

/* Define if you have the vsnprintf function.  */
#undef HAVE_VSNPRINTF

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

/* Define if you have the waitpid function.  */
#undef HAVE_WAITPID

/* Define if you have the yp_get_default_domain function.  */
#undef HAVE_YP_GET_DEFAULT_DOMAIN

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

/* Define if you have the <compat.h> header file.  */
#undef HAVE_COMPAT_H

/* Define if you have the <ctype.h> header file.  */
#undef HAVE_CTYPE_H

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

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

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

/* Define if you have the <glob.h> header file.  */
#undef HAVE_GLOB_H

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

/* Define if you have the <gssapi/gssapi.h> header file.  */
#undef HAVE_GSSAPI_GSSAPI_H

/* Define if you have the <gssapi/gssapi_generic.h> header file.  */
#undef HAVE_GSSAPI_GSSAPI_GENERIC_H

/* Define if you have the <history.h> header file.  */
#undef HAVE_HISTORY_H

/* Define if you have the <krb5.h> header file.  */
#undef HAVE_KRB5_H

/* Define if you have the <lastlog.h> header file.  */
#undef HAVE_LASTLOG_H

/* Define if you have the <lber.h> header file.  */
#undef HAVE_LBER_H

/* Define if you have the <ldap.h> header file.  */
#undef HAVE_LDAP_H

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

/* Define if you have the <linux/xqm.h> header file.  */
#undef HAVE_LINUX_XQM_H

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

/* Define if you have the <ndir.h> header file.  */
#undef HAVE_NDIR_H

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

/* Define if you have the <netinet/in_ip.h> header file.  */
#undef HAVE_NETINET_IN_IP_H

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

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

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

/* Define if you have the <ns_api.h> header file.  */
#undef HAVE_NS_API_H

/* Define if you have the <nss.h> header file.  */
#undef HAVE_NSS_H

/* Define if you have the <nss_common.h> header file.  */
#undef HAVE_NSS_COMMON_H

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

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

/* Define if you have the <readline/history.h> header file.  */
#undef HAVE_READLINE_HISTORY_H

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

/* Define if you have the <rpc/rpc.h> header file.  */
#undef HAVE_RPC_RPC_H

/* Define if you have the <rpcsvc/nis.h> header file.  */
#undef HAVE_RPCSVC_NIS_H

/* Define if you have the <rpcsvc/yp_prot.h> header file.  */
#undef HAVE_RPCSVC_YP_PROT_H

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

/* Define if you have the <security/_pam_macros.h> header file.  */
#undef HAVE_SECURITY__PAM_MACROS_H

/* Define if you have the <security/pam_appl.h> header file.  */
#undef HAVE_SECURITY_PAM_APPL_H

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

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

/* Define if you have the <stdarg.h> header file.  */
#undef HAVE_STDARG_H

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

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

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

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

/* Define if you have the <sys/acl.h> header file.  */
#undef HAVE_SYS_ACL_H

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

/* Define if you have the <sys/cdefs.h> header file.  */
#undef HAVE_SYS_CDEFS_H

/* Define if you have the <sys/dir.h> header file.  */
#undef HAVE_SYS_DIR_H

/* Define if you have the <sys/dustat.h> header file.  */
#undef HAVE_SYS_DUSTAT_H

/* Define if you have the <sys/fcntl.h> header file.  */
#undef HAVE_SYS_FCNTL_H

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

/* Define if you have the <sys/filsys.h> header file.  */
#undef HAVE_SYS_FILSYS_H

/* Define if you have the <sys/fs/s5param.h> header file.  */
#undef HAVE_SYS_FS_S5PARAM_H

/* Define if you have the <sys/fs/vx_quota.h> header file.  */
#undef HAVE_SYS_FS_VX_QUOTA_H

/* Define if you have the <sys/id.h> header file.  */
#undef HAVE_SYS_ID_H

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

/* Define if you have the <sys/ipc.h> header file.  */
#undef HAVE_SYS_IPC_H

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

/* Define if you have the <sys/mode.h> header file.  */
#undef HAVE_SYS_MODE_H

/* Define if you have the <sys/mount.h> header file.  */
#undef HAVE_SYS_MOUNT_H

/* Define if you have the <sys/ndir.h> header file.  */
#undef HAVE_SYS_NDIR_H

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

/* Define if you have the <sys/priv.h> header file.  */
#undef HAVE_SYS_PRIV_H

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

/* Define if you have the <sys/security.h> header file.  */
#undef HAVE_SYS_SECURITY_H

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

/* Define if you have the <sys/shm.h> header file.  */
#undef HAVE_SYS_SHM_H

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

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

/* Define if you have the <sys/statfs.h> header file.  */
#undef HAVE_SYS_STATFS_H

/* Define if you have the <sys/statvfs.h> header file.  */
#undef HAVE_SYS_STATVFS_H

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

/* Define if you have the <sys/syslog.h> header file.  */
#undef HAVE_SYS_SYSLOG_H

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

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

/* Define if you have the <sys/unistd.h> header file.  */
#undef HAVE_SYS_UNISTD_H

/* Define if you have the <sys/vfs.h> header file.  */
#undef HAVE_SYS_VFS_H

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

/* Define if you have the <syscall.h> header file.  */
#undef HAVE_SYSCALL_H

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

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

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

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

/* Define if you have the <utime.h> header file.  */
#undef HAVE_UTIME_H

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

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

/* Define if you have the <xfs/xqm.h> header file.  */
#undef HAVE_XFS_XQM_H

/* Define if you have the acl library (-lacl).  */
#undef HAVE_LIBACL

/* Define if you have the gen library (-lgen).  */
#undef HAVE_LIBGEN

/* Define if you have the iconv library (-liconv).  */
#undef HAVE_LIBICONV

/* Define if you have the inet library (-linet).  */
#undef HAVE_LIBINET

/* Define if you have the nsl library (-lnsl).  */
#undef HAVE_LIBNSL

/* Define if you have the nsl_s library (-lnsl_s).  */
#undef HAVE_LIBNSL_S

/* Define if you have the resolv library (-lresolv).  */
#undef HAVE_LIBRESOLV

/* Define if you have the sec library (-lsec).  */
#undef HAVE_LIBSEC

/* Define if you have the security library (-lsecurity).  */
#undef HAVE_LIBSECURITY

/* Define if you have the sendfile library (-lsendfile).  */
#undef HAVE_LIBSENDFILE

/* Define if you have the socket library (-lsocket).  */
#undef HAVE_LIBSOCKET

/* Define to turn on dmalloc debugging */
#undef ENABLE_DMALLOC

/* Define to check invariants around some common functions */
#undef DMALLOC_FUNC_CHECK

/* Whether the C compiler understands volatile */
#undef HAVE_VOLATILE

/* Whether MMAP is broken */
#undef MMAP_BLACKLIST

/* Whether to use both of HPUX' crypt calls */
#undef USE_BOTH_CRYPT_CALLS

/* Whether to use HPUX extensions */
#undef _HPUX_SOURCE

/* Whether to use POSIX compatible functions */
#undef _POSIX_SOURCE

/* Required alignment */
#undef _ALIGNMENT_REQUIRED

/* Maximum alignment */
#undef _MAX_ALIGNMENT

/* Whether to use both of HPUX' crypt calls */
#undef USE_BOTH_CRYPT_CALLS

/* Whether to use HPUX extensions */
#undef _HPUX_SOURCE

/* Whether to use POSIX compatible functions */
#undef _POSIX_SOURCE

/* Whether to use large file support */
#undef _LARGEFILE64_SOURCE

/* Required alignment */
#undef _ALIGNMENT_REQUIRED

/* Maximum alignment */
#undef _MAX_ALIGNMENT

/* Whether to enable large file support */
#undef _LARGE_FILES

/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE

/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE

/* File offset bits */
#undef _FILE_OFFSET_BITS

/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE

/* File offset bits */
#undef _FILE_OFFSET_BITS

/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE

/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE

/* File offset bits */
#undef _FILE_OFFSET_BITS

/* Whether to use GNU libc extensions */
#undef _GNU_SOURCE

/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE

/* Whether to use GNU libc extensions */
#undef _GNU_SOURCE

/* Whether we have shadow.h */
#undef HAVE_SHADOW_H

/* Whether dirent has a d_off member */
#undef HAVE_DIRENT_D_OFF

/* Whether we have CUPS */
#undef HAVE_CUPS

/* Whether we have dlopen() */
#undef HAVE_DLOPEN

/* Whether the compiler supports immediate structures */
#undef HAVE_IMMEDIATE_STRUCTURES

/* If we need to build with unixscoket support */
#undef HAVE_UNIXSOCKET

/* Whether we have the variable type socklen_t */
#undef HAVE_SOCKLEN_T_TYPE

/* Whether we have the atomic_t variable type */
#undef HAVE_SIG_ATOMIC_T_TYPE

/* Whether errno() is available */
#undef HAVE_ERRNO_DECL

/* Whether setresuid() is available */
#undef HAVE_SETRESUID_DECL

/* Whether setresgid() is available */
#undef HAVE_SETRESGID_DECL

/* Whether asprintf() is available */
#undef HAVE_ASPRINTF_DECL

/* Whether vasprintf() is available */
#undef HAVE_VASPRINTF_DECL

/* Whether vsnprintf() is available */
#undef HAVE_VSNPRINTF_DECL

/* Whether snprintf() is available */
#undef HAVE_SNPRINTF_DECL

/* Whether the system has setresuid */
#undef HAVE_SETRESUID

/* Whether the system has setresgid */
#undef HAVE_SETRESGID

/* Whether the system has the crypt() function */
#undef HAVE_CRYPT

/* Whether the system has readline */
#undef HAVE_LIBREADLINE

/* Whether the system has readline */
#undef HAVE_LIBREADLINE

/* Do we have rl_completion_matches? */
#undef HAVE_NEW_LIBREADLINE

/* Whether the system has connect() */
#undef HAVE_CONNECT

/* Whether the system has yp_get_default_domain() */
#undef HAVE_YP_GET_DEFAULT_DOMAIN

/* Whether stat64() is available */
#undef HAVE_STAT64

/* Whether fstat64() is available */
#undef HAVE_FSTAT64

/* Whether the host os is linux */
#undef LINUX

/* Whether the host os is solaris */
#undef SUNOS5

/* The size of a block */
#undef STAT_ST_BLOCKSIZE

/* Whether the host os is sunos4 */
#undef SUNOS4

/* The size of a block */
#undef STAT_ST_BLOCKSIZE

/* The size of a block */
#undef STAT_ST_BLOCKSIZE

/* Whether the host os is irix */
#undef IRIX

/* Whether the host os is irix6 */
#undef IRIX6

/* The size of a block */
#undef STAT_ST_BLOCKSIZE

/* Whether the host os is aix */
#undef AIX

/* The size of a block */
#undef STAT_ST_BLOCKSIZE

/* Whether the host os is HPUX */
#undef HPUX

/* The size of a block */
#undef STAT_ST_BLOCKSIZE

/* Whether the host os is qnx */
#undef QNX

/* Whether the host os is osf1 */
#undef OSF1

/* Whether the host os is sco unix */
#undef SCO

/* Whether the host os is unixware */
#undef UNIXWARE

/* Whether the host os is NeXT v2 */
#undef NEXT2

/* Whether this is a system V system */
#undef SYSV

/* Whether memset() is available */
#undef HAVE_MEMSET

/* Whether the host os is reliantunix */
#undef RELIANTUNIX

/* Whether this is a system V system */
#undef SYSV

/* Whether memset() is available */
#undef HAVE_MEMSET

/* Whether the host supports long long's */
#undef HAVE_LONGLONG

/* Whether the compiler supports the LL prefix on long long integers */
#undef COMPILER_SUPPORTS_LL

/* The size of the 'off_t' type */
#undef SIZEOF_OFF_T

/* Whether off64_t is available */
#undef HAVE_OFF64_T

/* The size of the 'ino_t' type */
#undef SIZEOF_INO_T

/* Whether the 'ino64_t' type is available */
#undef HAVE_INO64_T

/* Whether the 'dev64_t' type is available */
#undef HAVE_DEV64_T

/* Whether the 'dirent64' struct is available */
#undef HAVE_STRUCT_DIRENT64

/* Whether the major macro for dev_t is available */
#undef HAVE_DEVICE_MAJOR_FN

/* Whether the minor macro for dev_t is available */
#undef HAVE_DEVICE_MINOR_FN

/* Whether the 'unsigned char' type is available */
#undef HAVE_UNSIGNED_CHAR

/* Whether the sockaddr_in struct has a sin_len property */
#undef HAVE_SOCK_SIN_LEN

/* Whether seekdir returns void */
#undef SEEKDIR_RETURNS_VOID

/* Whether there is a __FUNCTION__ macro */
#undef HAVE_FUNCTION_MACRO

/* Whether gettimeofday() is available */
#undef HAVE_GETTIMEOFDAY_TZ

/* Whether __va_copy() is available */
#undef HAVE_VA_COPY

/* Whether there is a C99 compliant vsnprintf */
#undef HAVE_C99_VSNPRINTF

/* Whether readdir() is broken */
#undef HAVE_BROKEN_READDIR

/* Whether struct utimbuf is available */
#undef HAVE_UTIMBUF

/* Whether the utmp struct has a property ut_name */
#undef HAVE_UT_UT_NAME

/* Whether the utmp struct has a property ut_user */
#undef HAVE_UT_UT_USER

/* Whether the utmp struct has a property ut_id */
#undef HAVE_UT_UT_ID

/* Whether the utmp struct has a property ut_host */
#undef HAVE_UT_UT_HOST

/* Whether the utmp struct has a property ut_time */
#undef HAVE_UT_UT_TIME

/* Whether the utmp struct has a property ut_tv */
#undef HAVE_UT_UT_TV

/* Whether the utmp struct has a property ut_type */
#undef HAVE_UT_UT_TYPE

/* Whether the utmp struct has a property ut_pid */
#undef HAVE_UT_UT_PID

/* Whether the utmp struct has a property ut_exit */
#undef HAVE_UT_UT_EXIT

/* Whether the utmp struct has a property ut_addr */
#undef HAVE_UT_UT_ADDR

/* Whether pututline returns pointer */
#undef PUTUTLINE_RETURNS_UTMP

/* Whether the utmpx struct has a property ut_syslen */
#undef HAVE_UX_UT_SYSLEN

/* Path to iconv */
#undef WITH_LIBICONV

/* Whether to use native iconv */
#undef HAVE_NATIVE_ICONV

/* Whether to use linux kernel oplocks */
#undef HAVE_KERNEL_OPLOCKS_LINUX

/* Whether kernel notifies changes */
#undef HAVE_KERNEL_CHANGE_NOTIFY

/* Whether the kernel supports share modes */
#undef HAVE_KERNEL_SHARE_MODES

/* Whether IRIX kernel oplock type definitions are available */
#undef HAVE_KERNEL_OPLOCKS_IRIX

/* Whether IRIX specific capabilities are available */
#undef HAVE_IRIX_SPECIFIC_CAPABILITIES

/* Whether int16 typedef is included by rpc/rpc.h */
#undef HAVE_INT16_FROM_RPC_RPC_H

/* Whether uint16 typedef is included by rpc/rpc.h */
#undef HAVE_UINT16_FROM_RPC_RPC_H

/* Whether int32 typedef is included by rpc/rpc.h */
#undef HAVE_INT32_FROM_RPC_RPC_H

/* Whether uint32 typedef is included by rpc/rpc.h */
#undef HAVE_UINT32_FROM_RPC_RPC_H

/* Whether there is a conflicting AUTH_ERROR define in rpc/rpc.h */
#undef HAVE_RPC_AUTH_ERROR_CONFLICT

/* Truncate extend */
#undef HAVE_FTRUNCATE_EXTEND

/* Define if you have working AF_LOCAL sockets */
#undef HAVE_WORKING_AF_LOCAL

/* Whether getgroups is broken */
#undef HAVE_BROKEN_GETGROUPS

/* Whether getpass should be replaced */
#undef REPLACE_GETPASS

/* Whether inet_ntoa should be replaced */
#undef REPLACE_INET_NTOA

/* Whether mkstemp is secure */
#undef HAVE_SECURE_MKSTEMP

/* Whether sysconf(_SC_NGROUPS_MAX) is available */
#undef SYSCONF_SC_NGROUPS_MAX

/* Whether current user is root */
#undef HAVE_ROOT

/* Whether iface AIX is available */
#undef HAVE_IFACE_AIX

/* Whether iface ifconf is available */
#undef HAVE_IFACE_IFCONF

/* Whether iface ifreq is available */
#undef HAVE_IFACE_IFREQ

/* Whether setresuid() is available */
#undef USE_SETRESUID

/* Whether setreuid() is available */
#undef USE_SETREUID

/* Whether seteuid() is available */
#undef USE_SETEUID

/* Whether setuidx() is available */
#undef USE_SETUIDX

/* Whether mmap works */
#undef HAVE_MMAP

/* Whether ftruncate() needs root */
#undef FTRUNCATE_NEEDS_ROOT

/* Whether fcntl locking is available */
#undef HAVE_FCNTL_LOCK

/* Whether fcntl64 locks are broken */
#undef HAVE_BROKEN_FCNTL64_LOCKS

/* Whether the flock64 struct is available */
#undef HAVE_STRUCT_FLOCK64

/* Whether the stat struct has a st_block property */
#undef HAVE_STAT_ST_BLOCKS

/* Whether the stat struct has a st_blksize property */
#undef HAVE_STAT_ST_BLKSIZE

/* Broken RedHat 7.2 system header files */
#undef BROKEN_REDHAT_7_SYSTEM_HEADERS

/* Whether the nisplus include files are broken */
#undef BROKEN_NISPLUS_INCLUDE_FILES

/* Whether to include smbwrapper support */
#undef WITH_SMBWRAPPER

/* Whether to include AFS clear-text auth support */
#undef WITH_AFS

/* Whether to include DFS support */
#undef WITH_DFS

/* Whether to include Active Directory support */
#undef WITH_ADS

/* Whether KRB5 is available */
#undef HAVE_KRB5

/* Whether GSSAPI is available */
#undef HAVE_GSSAPI

/* Whether ldap is available */
#undef HAVE_LDAP

/* Number of arguments to ldap_set_rebind_proc */
#undef LDAP_SET_REBIND_PROC_ARGS

/* Whether to include automount support */
#undef WITH_AUTOMOUNT

/* Whether to build smbmount */
#undef WITH_SMBMOUNT

/* Whether to include PAM support */
#undef WITH_PAM

/* Whether libpam is available */
#undef HAVE_LIBPAM

/* Whether crypt() is available */
#undef HAVE_CRYPT

/* Whether crypt needs truncated salt */
#undef HAVE_TRUNCATED_SALT

/* Whether to include 2.2 compatibel LDAP SAM configuration */
#undef WITH_LDAP_SAMCONFIG

/* Whether to include experimental TDB SAM support */
#undef WITH_TDB_SAM

/* Whether to include nisplus SAM support */
#undef WITH_NISPLUS_SAM

/* Whether to include nisplus_home support */
#undef WITH_NISPLUS_HOME

/* Whether to include experimental syslog support */
#undef WITH_SYSLOG

/* Whether to use profiling */
#undef WITH_PROFILE

/* linux 2.4.x quota braindamage */
#undef LINUX_QUOTAS_2

/* linux quotas */
#undef LINUX_QUOTAS_1

/* Whether to include experimental quota support */
#undef WITH_QUOTAS

/* Whether to include experimental utmp accounting */
#undef WITH_UTMP

/* Whether statvfs64() is available */
#undef STAT_STATVFS64

/* Whether statvfs() is available */
#undef STAT_STATVFS

/* Whether statfs requires 3 arguments */
#undef STAT_STATFS3_OSF1

/* Whether statfs requires two arguments and struct statfs has bsize property */
#undef STAT_STATFS2_BSIZE

/* Whether statfs requires 4 arguments */
#undef STAT_STATFS4

/* Whether statfs requires 2 arguments and struct statfs has fsize */
#undef STAT_STATFS2_FSIZE

/* Whether statfs requires 2 arguments and struct fs_data is available */
#undef STAT_STATFS2_FS_DATA

/* Whether large file support can be enabled */
#undef HAVE_EXPLICIT_LARGEFILE_SUPPORT

/* Whether to use spin locks instead of fcntl locks */
#undef USE_SPINLOCKS

/* Whether to use sparc spinlocks */
#undef SPARC_SPINLOCKS

/* Whether to use intel spinlocks */
#undef INTEL_SPINLOCKS

/* Whether to use mips spinlocks */
#undef MIPS_SPINLOCKS

/* Whether to use powerpc spinlocks */
#undef POWERPC_SPINLOCKS

/* Whether UnixWare ACLs are available */
#undef HAVE_UNIXWARE_ACLS

/* Whether solaris ACLs are available */
#undef HAVE_SOLARIS_ACLS

/* Whether HPUX ACLs are available */
#undef HAVE_HPUX_ACLS

/* Whether IRIX ACLs are available */
#undef HAVE_IRIX_ACLS

/* Whether AIX ACLs are available */
#undef HAVE_AIX_ACLS

/* Whether Tru64 ACLs are available */
#undef HAVE_TRU64_ACLS

/* Whether POSIX ACLs are available */
#undef HAVE_POSIX_ACLS

/* Whether acl_get_perm_np() is available */
#undef HAVE_ACL_GET_PERM_NP

/* Whether no ACLs support is available */
#undef HAVE_NO_ACLS

/* Whether no ACLs support should be built in */
#undef HAVE_NO_ACLS

/* Whether 64-bit sendfile() is available */
#undef HAVE_SENDFILE64

/* Whether linux sendfile() API is available */
#undef LINUX_SENDFILE_API

/* Whether sendfile() should be used */
#undef WITH_SENDFILE

/* Whether sendfile() is available */
#undef HAVE_SENDFILE

/* Whether linux sendfile() API is available */
#undef LINUX_SENDFILE_API

/* Whether sendfile() should be used */
#undef WITH_SENDFILE

/* Whether (linux) sendfile() is broken */
#undef LINUX_BROKEN_SENDFILE_API

/* Whether sendfile should be used */
#undef WITH_SENDFILE

/* Whether sendfile() support is available */
#undef HAVE_SENDFILE

/* Whether the FreeBSD sendfile() API is available */
#undef FREEBSD_SENDFILE_API

/* Whether sendfile() support should be included */
#undef WITH_SENDFILE

/* Whether sendfile64() is available */
#undef HAVE_SENDFILE64

/* Whether the hpux sendfile() API is available */
#undef HPUX_SENDFILE_API

/* Whether sendfile() support should be included */
#undef WITH_SENDFILE

/* Whether sendfile() is available */
#undef HAVE_SENDFILE

/* Whether the hpux sendfile() API is available */
#undef HPUX_SENDFILE_API

/* Whether sendfile() support should be included */
#undef WITH_SENDFILE

/* Whether sendfilev64() is available */
#undef HAVE_SENDFILEV64

/* Whether the soloris sendfile() API is available */
#undef SOLARIS_SENDFILE_API

/* Whether sendfile() support should be included */
#undef WITH_SENDFILE

/* Whether sendfilev() is available */
#undef HAVE_SENDFILEV

/* Whether the solaris sendfile() API is available */
#undef SOLARIS_SENDFILE_API

/* Whether to include sendfile() support */
#undef WITH_SENDFILE

/* Whether to build winbind */
#undef WITH_WINBIND

/* Whether struct passwd has pw_comment */
#undef HAVE_PASSWD_PW_COMMENT

/* Whether struct passwd has pw_age */
#undef HAVE_PASSWD_PW_AGE