aboutsummaryrefslogtreecommitdiff
path: root/config.h.in
blob: 81867c7b077155cb41f3e9296a0875d0c229e1f0 (plain) (blame)
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
/* config.h.in.  Generated from configure.ac by autoheader.  */

/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD

/* Is adjtime() accurate? */
#undef ADJTIME_IS_ACCURATE

/* Support NTP Autokey protocol? */
#undef AUTOKEY

/* why not HAVE_P_S? */
#undef CALL_PTHREAD_SETCONCURRENCY

/* ACTS modem service */
#undef CLOCK_ACTS

/* Arbiter 1088A/B GPS receiver */
#undef CLOCK_ARBITER

/* ARCRON support? */
#undef CLOCK_ARCRON_MSF

/* Austron 2200A/2201A GPS receiver? */
#undef CLOCK_AS2201

/* PPS interface? */
#undef CLOCK_ATOM

/* Datum/Bancomm bc635/VME interface? */
#undef CLOCK_BANC

/* Chronolog K-series WWVB receiver? */
#undef CLOCK_CHRONOLOG

/* CHU modem/decoder */
#undef CLOCK_CHU

/* Diems Computime Radio Clock? */
#undef CLOCK_COMPUTIME

/* Datum Programmable Time System? */
#undef CLOCK_DATUM

/* ELV/DCF7000 clock? */
#undef CLOCK_DCF7000

/* Dumb generic hh:mm:ss local clock? */
#undef CLOCK_DUMBCLOCK

/* Forum Graphic GPS datating station driver? */
#undef CLOCK_FG

/* GPSD JSON receiver */
#undef CLOCK_GPSDJSON

/* TrueTime GPS receiver/VME interface? */
#undef CLOCK_GPSVME

/* Heath GC-1000 WWV/WWVH receiver? */
#undef CLOCK_HEATH

/* HOPF 6021 clock? */
#undef CLOCK_HOPF6021

/* HOPF PCI clock device? */
#undef CLOCK_HOPF_PCI

/* HOPF serial clock device? */
#undef CLOCK_HOPF_SERIAL

/* HP 58503A GPS receiver? */
#undef CLOCK_HPGPS

/* IRIG audio decoder? */
#undef CLOCK_IRIG

/* JJY receiver? */
#undef CLOCK_JJY

/* Rockwell Jupiter GPS clock? */
#undef CLOCK_JUPITER

/* Leitch CSD 5300 Master Clock System Driver? */
#undef CLOCK_LEITCH

/* local clock reference? */
#undef CLOCK_LOCAL

/* Meinberg clocks */
#undef CLOCK_MEINBERG

/* Magnavox MX4200 GPS receiver */
#undef CLOCK_MX4200

/* NeoClock4X */
#undef CLOCK_NEOCLOCK4X

/* NMEA GPS receiver */
#undef CLOCK_NMEA

/* Motorola UT Oncore GPS */
#undef CLOCK_ONCORE

/* Palisade clock */
#undef CLOCK_PALISADE

/* PARSE driver interface */
#undef CLOCK_PARSE

/* Conrad parallel port radio clock */
#undef CLOCK_PCF

/* PCL 720 clock support */
#undef CLOCK_PPS720

/* PST/Traconex 1020 WWV/WWVH receiver */
#undef CLOCK_PST

/* DCF77 raw time code */
#undef CLOCK_RAWDCF

/* RCC 8000 clock */
#undef CLOCK_RCC8000

/* RIPE NCC Trimble clock */
#undef CLOCK_RIPENCC

/* Schmid DCF77 clock */
#undef CLOCK_SCHMID

/* SEL240X protocol */
#undef CLOCK_SEL240X

/* clock thru shared memory */
#undef CLOCK_SHM

/* Spectracom 8170/Netclock/2 WWVB receiver */
#undef CLOCK_SPECTRACOM

/* KSI/Odetics TPRO/S GPS receiver/IRIG interface */
#undef CLOCK_TPRO

/* Trimble GPS receiver/TAIP protocol */
#undef CLOCK_TRIMTAIP

/* Trimble GPS receiver/TSIP protocol */
#undef CLOCK_TRIMTSIP

/* Kinemetrics/TrueTime receivers */
#undef CLOCK_TRUETIME

/* Spectracom TSYNC timing board */
#undef CLOCK_TSYNCPCI

/* TrueTime 560 IRIG-B decoder? */
#undef CLOCK_TT560

/* Ultralink M320 WWVB receiver? */
#undef CLOCK_ULINK

/* VARITEXT clock */
#undef CLOCK_VARITEXT

/* WHARTON 400A Series clock */
#undef CLOCK_WHARTON_400A

/* WWV audio driver */
#undef CLOCK_WWV

/* Zyfer GPStarplus */
#undef CLOCK_ZYFER

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
   systems. This function is required for `alloca.c' support on those systems.
   */
#undef CRAY_STACKSEG_END

/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA

/* Enable debugging code? */
#undef DEBUG

/* Enable processing time debugging? */
#undef DEBUG_TIMING

/* Declaration style */
#undef DECL_ADJTIME_0

/* Declaration style */
#undef DECL_BCOPY_0

/* Declaration style */
#undef DECL_BZERO_0

/* Declaration style */
#undef DECL_CFSETISPEED_0

/* Declare errno? */
#undef DECL_ERRNO

/* Declaration style */
#undef DECL_HSTRERROR_0

/* Declare h_errno? */
#undef DECL_H_ERRNO

/* Declaration style */
#undef DECL_INET_NTOA_0

/* Declaration style */
#undef DECL_IOCTL_0

/* Declaration style */
#undef DECL_IPC_0

/* Declaration style */
#undef DECL_MEMMOVE_0

/* Declaration style */
#undef DECL_MKSTEMP_0

/* Declaration style */
#undef DECL_MKTEMP_0

/* Declaration style */
#undef DECL_NLIST_0

/* Declaration style */
#undef DECL_PLOCK_0

/* Declaration style */
#undef DECL_RENAME_0

/* Declaration style */
#undef DECL_SELECT_0

/* Declaration style */
#undef DECL_SETITIMER_0

/* Declaration style */
#undef DECL_SETPRIORITY_0

/* Declaration style */
#undef DECL_SETPRIORITY_1

/* Declaration style */
#undef DECL_SIGVEC_0

/* Declaration style */
#undef DECL_STDIO_0

/* Declaration style */
#undef DECL_STIME_0

/* Declaration style */
#undef DECL_STIME_1

/* Declaration style */
#undef DECL_STRERROR_0

/* Declaration style */
#undef DECL_STRTOL_0

/* Declare syscall()? */
#undef DECL_SYSCALL

/* Declaration style */
#undef DECL_SYSLOG_0

/* Declaration style */
#undef DECL_TIMEOFDAY_0

/* Declaration style */
#undef DECL_TIME_0

/* Declaration style */
#undef DECL_TOLOWER_0

/* Declaration style */
#undef DECL_TOUPPER_0

/* What is the fallback value for HZ? */
#undef DEFAULT_HZ

/* Default number of megabytes for RLIMIT_MEMLOCK */
#undef DFLT_RLIMIT_MEMLOCK

/* Default number of 4k pages for RLIMIT_STACK */
#undef DFLT_RLIMIT_STACK

/* Directory separator character, usually / or \\ */
#undef DIR_SEP

/* use old autokey session key behavior? */
#undef DISABLE_BUG1243_FIX

/* synch TODR hourly? */
#undef DOSYNCTODR

/* The number of minutes in a DST adjustment */
#undef DSTMINUTES

/* number of args to el_init() */
#undef EL_INIT_ARGS

/* nls support in libopts */
#undef ENABLE_NLS

/* force ntpdate to step the clock if !defined(STEP_SLEW) ? */
#undef FORCE_NTPDATE_STEP

/* What is getsockname()'s socklen type? */
#undef GETSOCKNAME_SOCKLEN_TYPE

/* Do we have a routing socket (rt_msghdr or rtattr)? */
#undef HAS_ROUTING_SOCKET

/* via __adjtimex */
#undef HAVE_ADJTIMEX

/* Define to 1 if you have `alloca', as a function or macro. */
#undef HAVE_ALLOCA

/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
   */
#undef HAVE_ALLOCA_H

/* Define to 1 if you have the `arc4random_buf' function. */
#undef HAVE_ARC4RANDOM_BUF

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

/* Define to 1 if you have the `atomic_thread_fence' function. */
#undef HAVE_ATOMIC_THREAD_FENCE

/* Do we have audio support? */
#undef HAVE_AUDIO

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

/* Define to 1 if you have the `canonicalize_file_name' function. */
#undef HAVE_CANONICALIZE_FILE_NAME

/* Define to 1 if you have the `chmod' function. */
#undef HAVE_CHMOD

/* Do we have the CIOGETEV ioctl (SunOS, Linux)? */
#undef HAVE_CIOGETEV

/* Define to 1 if you have the `clock_getres' function. */
#undef HAVE_CLOCK_GETRES

/* Define to 1 if you have the `clock_gettime' function. */
#undef HAVE_CLOCK_GETTIME

/* Define to 1 if you have the `clock_settime' function. */
#undef HAVE_CLOCK_SETTIME

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

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

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

/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#undef HAVE_DIRENT_H

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

/* Use Rendezvous/DNS-SD registration */
#undef HAVE_DNSREGISTRATION

/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
#undef HAVE_DOPRNT

/* Can we drop root privileges? */
#undef HAVE_DROPROOT

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

/* Define to 1 if you have the `EVP_MD_do_all_sorted' function. */
#undef HAVE_EVP_MD_DO_ALL_SORTED

/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD

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

/* Define to 1 if you have the `finite' function. */
#undef HAVE_FINITE

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

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

/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK

/* Define to 1 if you have the `fstat' function. */
#undef HAVE_FSTAT

/* Define to 1 if you have the `getbootfile' function. */
#undef HAVE_GETBOOTFILE

/* Define to 1 if you have the `getclock' function. */
#undef HAVE_GETCLOCK

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

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

/* Define to 1 if you have the `getpassphrase' function. */
#undef HAVE_GETPASSPHRASE

/* Define to 1 if you have the `getrusage' function. */
#undef HAVE_GETRUSAGE

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

/* if you have GNU Pth */
#undef HAVE_GNU_PTH

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

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

/* Obvious */
#undef HAVE_HZ_IN_STRUCT_CLOCKINFO

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

/* have iflist_sysctl? */
#undef HAVE_IFLIST_SYSCTL

/* Define to 1 if you have the `if_nametoindex' function. */
#undef HAVE_IF_NAMETOINDEX

/* inline keyword or macro available */
#undef HAVE_INLINE

/* 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'. */
#undef HAVE_INT32

/* int32 type in DNS headers, not others. */
#undef HAVE_INT32_ONLY_WITH_DNS

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

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

/* Define to 1 if the system has the type `intmax_t'. */
#undef HAVE_INTMAX_T

/* Define to 1 if the system has the type `intptr_t'. */
#undef HAVE_INTPTR_T

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

/* Define to 1 if you have the `isfinite' function. */
#undef HAVE_ISFINITE

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

/* Define to 1 if you have the `kvm_open' function. */
#undef HAVE_KVM_OPEN

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

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

/* Define to 1 if you have the `intl' library (-lintl). */
#undef HAVE_LIBINTL

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

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

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

/* using Linux pthread? */
#undef HAVE_LINUXTHREADS

/* Do we have Linux capabilities? */
#undef HAVE_LINUX_CAPABILITIES

/* Define to 1 if you have the <linux/if_addr.h> header file. */
#undef HAVE_LINUX_IF_ADDR_H

/* if you have LinuxThreads */
#undef HAVE_LINUX_THREADS

/* Define to 1 if you have the `localeconv' function. */
#undef HAVE_LOCALECONV

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

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

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

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

/* if you have SunOS LWP package */
#undef HAVE_LWP

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

/* Define to 1 if you have the <machine/inline.h> header file. */
#undef HAVE_MACHINE_INLINE_H

/* Define to 1 if you have the <machine/soundcard.h> header file. */
#undef HAVE_MACHINE_SOUNDCARD_H

/* define if you have Mach Cthreads */
#undef HAVE_MACH_CTHREADS

/* Define to 1 if you have the <mach/cthreads.h> header file. */
#undef HAVE_MACH_CTHREADS_H

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

/* Define to 1 if you have the `MD5Init' function. */
#undef HAVE_MD5INIT

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

/* Define to 1 if you have the `memlk' function. */
#undef HAVE_MEMLK

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

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

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

/* Define to 1 if you have the `mlockall' function. */
#undef HAVE_MLOCKALL

/* Define to 1 if you have the `mmap' function. */
#undef HAVE_MMAP

/* Define to 1 if you have the `nanosleep' function. */
#undef HAVE_NANOSLEEP

/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#undef HAVE_NDIR_H

/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_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_system.h> header file. */
#undef HAVE_NETINET_IN_SYSTEM_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/in_var.h> header file. */
#undef HAVE_NETINET_IN_VAR_H

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

/* NetInfo support? */
#undef HAVE_NETINFO

/* Define to 1 if you have the <netinfo/ni.h> header file. */
#undef HAVE_NETINFO_NI_H

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

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

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

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

/* Define to 1 if you have the `nice' function. */
#undef HAVE_NICE

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

/* via __adjtimex */
#undef HAVE_NTP_ADJTIME

/* via __ntp_gettime */
#undef HAVE_NTP_GETTIME

/* Do we want support for Samba's signing daemon? */
#undef HAVE_NTP_SIGND

/* if you have NT Event Log */
#undef HAVE_NT_EVENT_LOG

/* if you have NT Service Manager */
#undef HAVE_NT_SERVICE_MANAGER

/* if you have NT Threads */
#undef HAVE_NT_THREADS

/* Define to 1 if the system has the type `pid_t'. */
#undef HAVE_PID_T

/* Define to 1 if you have the `plock' function. */
#undef HAVE_PLOCK

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

/* Do we have the PPS API per the Draft RFC? */
#undef HAVE_PPSAPI

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

/* Define if you have POSIX threads libraries and header files. */
#undef HAVE_PTHREAD

/* define to pthreads API spec revision */
#undef HAVE_PTHREADS

/* Define to 1 if you have the `pthread_attr_getstacksize' function. */
#undef HAVE_PTHREAD_ATTR_GETSTACKSIZE

/* Define to 1 if you have the `pthread_attr_setstacksize' function. */
#undef HAVE_PTHREAD_ATTR_SETSTACKSIZE

/* define if you have pthread_detach function */
#undef HAVE_PTHREAD_DETACH

/* Define to 1 if you have the `pthread_getconcurrency' function. */
#undef HAVE_PTHREAD_GETCONCURRENCY

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

/* Define to 1 if you have the `pthread_kill' function. */
#undef HAVE_PTHREAD_KILL

/* Define to 1 if you have the `pthread_kill_other_threads_np' function. */
#undef HAVE_PTHREAD_KILL_OTHER_THREADS_NP

/* define if you have pthread_rwlock_destroy function */
#undef HAVE_PTHREAD_RWLOCK_DESTROY

/* Define to 1 if you have the `pthread_setconcurrency' function. */
#undef HAVE_PTHREAD_SETCONCURRENCY

/* Define to 1 if you have the `pthread_yield' function. */
#undef HAVE_PTHREAD_YIELD

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

/* Define to 1 if the system has the type `ptrdiff_t'. */
#undef HAVE_PTRDIFF_T

/* Define to 1 if you have the `pututline' function. */
#undef HAVE_PUTUTLINE

/* Define to 1 if you have the `pututxline' function. */
#undef HAVE_PUTUTXLINE

/* Define to 1 if you have the `RAND_bytes' function. */
#undef HAVE_RAND_BYTES

/* Define to 1 if you have the `RAND_poll' function. */
#undef HAVE_RAND_POLL

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

/* Define if your readline library has \`add_history' */
#undef HAVE_READLINE_HISTORY

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

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

/* Define to 1 if you have the `readlink' function. */
#undef HAVE_READLINK

/* Define to 1 if you have the `recvmsg' function. */
#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_init' function. */
#undef HAVE_RES_INIT

/* Do we have Linux routing socket? */
#undef HAVE_RTNETLINK

/* Define to 1 if you have the `rtprio' function. */
#undef HAVE_RTPRIO

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

/* Obvious */
#undef HAVE_SA_SIGACTION_IN_STRUCT_SIGACTION

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

/* Define to 1 if you have the `sched_setscheduler' function. */
#undef HAVE_SCHED_SETSCHEDULER

/* Define to 1 if you have the `sched_yield' function. */
#undef HAVE_SCHED_YIELD

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

/* Define to 1 if you have the `sem_timedwait' function. */
#undef HAVE_SEM_TIMEDWAIT

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

/* Define to 1 if you have the `setlinebuf' function. */
#undef HAVE_SETLINEBUF

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

/* define if setpgrp takes 0 arguments */
#undef HAVE_SETPGRP_0

/* Define to 1 if you have the `setpriority' function. */
#undef HAVE_SETPRIORITY

/* Define to 1 if you have the `setrlimit' function. */
#undef HAVE_SETRLIMIT

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

/* Define to 1 if you have the `settimeofday' function. */
#undef HAVE_SETTIMEOFDAY

/* Define to 1 if you have the `setvbuf' function. */
#undef HAVE_SETVBUF

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

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

/* Can we use SIGIO for tcp and udp IO? */
#undef HAVE_SIGNALED_IO

/* Define to 1 if you have the `sigset' function. */
#undef HAVE_SIGSET

/* Define to 1 if you have the `sigvec' function. */
#undef HAVE_SIGVEC

/* sigwait() available? */
#undef HAVE_SIGWAIT

/* Define to 1 if the system has the type `size_t'. */
#undef HAVE_SIZE_T

/* Define if C99-compliant `snprintf' is available. */
#undef HAVE_SNPRINTF

/* Define to 1 if you have the `socketpair' function. */
#undef HAVE_SOCKETPAIR

/* Are Solaris privileges available? */
#undef HAVE_SOLARIS_PRIVS

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

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

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

/* Define to 1 if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_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 to 1 if you have the `stime' function. */
#undef HAVE_STIME

/* Define to 1 if you have the `strchr' function. */
#undef HAVE_STRCHR

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

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

/* Define to 1 if you have the `strerror_r' function. */
#undef HAVE_STRERROR_R

/* 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 to 1 if you have the `strlcat' function. */
#undef HAVE_STRLCAT

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

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

/* Define to 1 if you have the `strrchr' function. */
#undef HAVE_STRRCHR

/* Define to 1 if you have the `strsignal' function. */
#undef HAVE_STRSIGNAL

/* Define to 1 if you have the `strtoll' function. */
#undef HAVE_STRTOLL

/* Define to 1 if `decimal_point' is a member of `struct lconv'. */
#undef HAVE_STRUCT_LCONV_DECIMAL_POINT

/* Define to 1 if `thousands_sep' is a member of `struct lconv'. */
#undef HAVE_STRUCT_LCONV_THOUSANDS_SEP

/* Do we have struct ntptimeval? */
#undef HAVE_STRUCT_NTPTIMEVAL

/* Define to 1 if `time.tv_nsec' is a member of `struct ntptimeval'. */
#undef HAVE_STRUCT_NTPTIMEVAL_TIME_TV_NSEC

/* Does a system header define struct ppsclockev? */
#undef HAVE_STRUCT_PPSCLOCKEV

/* Do we have struct snd_size? */
#undef HAVE_STRUCT_SND_SIZE

/* Does a system header define struct sockaddr_storage? */
#undef HAVE_STRUCT_SOCKADDR_STORAGE

/* struct timespec declared? */
#undef HAVE_STRUCT_TIMESPEC

/* Define to 1 if you have the <sun/audioio.h> header file. */
#undef HAVE_SUN_AUDIOIO_H

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

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

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

/* */
#undef HAVE_SYSLOG_FACILITYNAMES

/* Define to 1 if you have the <sys/audioio.h> header file. */
#undef HAVE_SYS_AUDIOIO_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/clockctl.h> header file. */
#undef HAVE_SYS_CLOCKCTL_H

/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
   */
#undef HAVE_SYS_DIR_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/i8253.h> header file. */
#undef HAVE_SYS_I8253_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/ipc.h> header file. */
#undef HAVE_SYS_IPC_H

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

/* Define to 1 if you have the <sys/lock.h> header file. */
#undef HAVE_SYS_LOCK_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/modem.h> header file. */
#undef HAVE_SYS_MODEM_H

/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
   */
#undef HAVE_SYS_NDIR_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/pcl720.h> header file. */
#undef HAVE_SYS_PCL720_H

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

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

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

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

/* Define to 1 if you have the <sys/procset.h> header file. */
#undef HAVE_SYS_PROCSET_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/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H

/* Define to 1 if you have the <sys/sched.h> header file. */
#undef HAVE_SYS_SCHED_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/shm.h> header file. */
#undef HAVE_SYS_SHM_H

/* Define to 1 if you have the <sys/signal.h> header file. */
#undef HAVE_SYS_SIGNAL_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/soundcard.h> header file. */
#undef HAVE_SYS_SOUNDCARD_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/sysctl.h> header file. */
#undef HAVE_SYS_SYSCTL_H

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

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

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

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

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

/* Define to 1 if you have the <sys/timex.h> header file. */
#undef HAVE_SYS_TIMEX_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/tpro.h> header file. */
#undef HAVE_SYS_TPRO_H

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

/* Use sys/uio.h for struct iovec help */
#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/var.h> header file. */
#undef HAVE_SYS_VAR_H

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

/* Define to 1 if the system has the type `s_char'. */
#undef HAVE_S_CHAR

/* 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

/* if you have Solaris LWP (thr) package */
#undef HAVE_THR

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

/* Define to 1 if you have the `thr_getconcurrency' function. */
#undef HAVE_THR_GETCONCURRENCY

/* Define to 1 if you have the `thr_setconcurrency' function. */
#undef HAVE_THR_SETCONCURRENCY

/* Define to 1 if you have the `thr_yield' function. */
#undef HAVE_THR_YIELD

/* Obvious */
#undef HAVE_TICKADJ_IN_STRUCT_CLOCKINFO

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

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

/* Define to 1 if you have the `timer_create' function. */
#undef HAVE_TIMER_CREATE

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

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

/* Do we have the TIOCGPPSEV ioctl (Solaris)? */
#undef HAVE_TIOCGPPSEV

/* Do we have the TIOCSPPS ioctl (Solaris)? */
#undef HAVE_TIOCSPPS

/* Do we have the TIO serial stuff? */
#undef HAVE_TIO_SERIAL_STUFF

/* 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 `uint8_t'. */
#undef HAVE_UINT8_T

/* Define to 1 if the system has the type `uintmax_t'. */
#undef HAVE_UINTMAX_T

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

/* Define to 1 if the system has the type `uint_t'. */
#undef HAVE_UINT_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

/* deviant sigwait? */
#undef HAVE_UNIXWARE_SIGWAIT

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

/* Define to 1 if you have the `updwtmp' function. */
#undef HAVE_UPDWTMP

/* Define to 1 if you have the `updwtmpx' function. */
#undef HAVE_UPDWTMPX

/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_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_int32'. */
#undef HAVE_U_INT32

/* u_int32 type in DNS headers, not others. */
#undef HAVE_U_INT32_ONLY_WITH_DNS

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

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

/* Define to 1 if you have the `vfork' function. */
#undef HAVE_VFORK

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

/* Define to 1 if you have the `vprintf' function. */
#undef HAVE_VPRINTF

/* Define if C99-compliant `vsnprintf' is available. */
#undef HAVE_VSNPRINTF

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

/* Define to 1 if the system has the type `wchar_t'. */
#undef HAVE_WCHAR_T

/* Define to 1 if the system has the type `wint_t'. */
#undef HAVE_WINT_T

/* Define to 1 if `fork' works. */
#undef HAVE_WORKING_FORK

/* Define to 1 if `vfork' works. */
#undef HAVE_WORKING_VFORK

/* define if select implicitly yields */
#undef HAVE_YIELDING_SELECT

/* Define to 1 if you have the `_exit' function. */
#undef HAVE__EXIT

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

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

/* Define to 1 if you have the `__adjtimex' function. */
#undef HAVE___ADJTIMEX

/* defined if C compiler supports __attribute__((...)) */
#undef HAVE___ATTRIBUTE__


	/* define away __attribute__() if unsupported */
	#ifndef HAVE___ATTRIBUTE__
	# define __attribute__(x) /* empty */
	#endif
	#define ISC_PLATFORM_NORETURN_PRE
	#define ISC_PLATFORM_NORETURN_POST __attribute__((__noreturn__))
    


/* Define to 1 if you have the `__ntp_gettime' function. */
#undef HAVE___NTP_GETTIME

/* Define to 1 if you have the `__res_init' function. */
#undef HAVE___RES_INIT

/* Does struct sockaddr_storage have __ss_family? */
#undef HAVE___SS_FAMILY_IN_SS


	    /* Handle sockaddr_storage.__ss_family */
	    #ifdef HAVE___SS_FAMILY_IN_SS
	    # define ss_family __ss_family
	    #endif /* HAVE___SS_FAMILY_IN_SS */
	
    

/* Define to provide `rpl_snprintf' function. */
#undef HW_WANT_RPL_SNPRINTF

/* Define to provide `rpl_vsnprintf' function. */
#undef HW_WANT_RPL_VSNPRINTF

/* Retry queries on _any_ DNS error? */
#undef IGNORE_DNS_ERRORS

/* Should we use the IRIG sawtooth filter? */
#undef IRIG_SUCKS

/* Enclose PTHREAD_ONCE_INIT in extra braces? */
#undef ISC_PLATFORM_BRACEPTHREADONCEINIT

/* Do we need to fix in6isaddr? */
#undef ISC_PLATFORM_FIXIN6ISADDR

/* ISC: do we have if_nametoindex()? */
#undef ISC_PLATFORM_HAVEIFNAMETOINDEX

/* have struct if_laddrconf? */
#undef ISC_PLATFORM_HAVEIF_LADDRCONF

/* have struct if_laddrreq? */
#undef ISC_PLATFORM_HAVEIF_LADDRREQ

/* have struct in6_pktinfo? */
#undef ISC_PLATFORM_HAVEIN6PKTINFO

/* have IPv6? */
#undef ISC_PLATFORM_HAVEIPV6

/* struct sockaddr has sa_len? */
#undef ISC_PLATFORM_HAVESALEN

/* sin6_scope_id? */
#undef ISC_PLATFORM_HAVESCOPEID

/* missing in6addr_any? */
#undef ISC_PLATFORM_NEEDIN6ADDRANY

/* Do we need netinet6/in6.h? */
#undef ISC_PLATFORM_NEEDNETINET6IN6H

/* ISC: provide inet_ntop() */
#undef ISC_PLATFORM_NEEDNTOP

/* Declare in_port_t? */
#undef ISC_PLATFORM_NEEDPORTT

/* ISC: provide inet_pton() */
#undef ISC_PLATFORM_NEEDPTON

/* enable libisc thread support? */
#undef ISC_PLATFORM_USETHREADS

/* Does the kernel have an FLL bug? */
#undef KERNEL_FLL_BUG

/* Does the kernel support precision time discipline? */
#undef KERNEL_PLL

/* Define to use libseccomp system call filtering. */
#undef KERN_SECCOMP

/* What is (probably) the name of DOSYNCTODR in the kernel? */
#undef K_DOSYNCTODR_NAME

/* What is (probably) the name of NOPRINTF in the kernel? */
#undef K_NOPRINTF_NAME

/* What is the name of TICKADJ in the kernel? */
#undef K_TICKADJ_NAME

/* What is the name of TICK in the kernel? */
#undef K_TICK_NAME

/* define to 1 if library is thread safe */
#undef LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE

/* leap smear mechanism */
#undef LEAP_SMEAR

/* Define to any value to include libseccomp sandboxing. */
#undef LIBSECCOMP

/* Should we align with the NIST lockclock scheme? */
#undef LOCKCLOCK

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

/* Does the target support multicast IP? */
#undef MCAST

/* Should we recommend a minimum value for tickadj? */
#undef MIN_REC_TICKADJ

/* Define to 1 if the compiler does not support C99's structure
   initialization. */
#undef MISSING_C99_STRUCT_INIT

/* Do we need HPUX adjtime() library support? */
#undef NEED_HPUX_ADJTIME

/* Do we want the HPUX FindConfig()? */
#undef NEED_HPUX_FINDCONFIG

/* We need to provide netsnmp_daemonize() */
#undef NEED_NETSNMP_DAEMONIZE

/* pthread_init() required? */
#undef NEED_PTHREAD_INIT

/* use PTHREAD_SCOPE_SYSTEM? */
#undef NEED_PTHREAD_SCOPE_SYSTEM

/* Do we need the qnx adjtime call? */
#undef NEED_QNX_ADJTIME

/* Do we need extra room for SO_RCVBUF? (HPUX < 8) */
#undef NEED_RCVBUF_SLOP

/* Do we need an s_char typedef? */
#undef NEED_S_CHAR_TYPEDEF

/* Might nlist() values require an extra level of indirection (AIX)? */
#undef NLIST_EXTRA_INDIRECTION

/* does struct nlist use a name union? */
#undef NLIST_NAME_UNION

/* nlist stuff */
#undef NLIST_STRUCT

/* Should we NOT read /dev/kmem? */
#undef NOKMEM

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

/* Should we avoid #warning on option name collisions? */
#undef NO_OPTION_NAME_WARNINGS

/* Is there a problem using PARENB and IGNPAR? */
#undef NO_PARENB_IGNPAR

/* define if you have (or want) no threads */
#undef NO_THREADS

/* Default location of crypto key info */
#undef NTP_KEYSDIR

/* Path to sign daemon rendezvous socket */
#undef NTP_SIGND_PATH

/* Do we have ntp_{adj,get}time in libc? */
#undef NTP_SYSCALLS_LIBC

/* Do we have ntp_{adj,get}time in the kernel? */
#undef NTP_SYSCALLS_STD

/* Do we have support for SHMEM_STATUS? */
#undef ONCORE_SHMEM_STATUS

/* Use OpenSSL? */
#undef OPENSSL

/* Should we open the broadcast socket? */
#undef OPEN_BCAST_SOCKET

/* need to recreate sockets on changed routing? */
#undef OS_MISSES_SPECIFIC_ROUTE_UPDATES

/* wildcard socket needs REUSEADDR to bind interface addresses */
#undef OS_NEEDS_REUSEADDR_FOR_IFADDRBIND

/* Do we need to override the system's idea of HZ? */
#undef OVERRIDE_HZ

/* 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

/* data dir */
#undef PERLLIBDIR

/* define to a working POSIX compliant shell */
#undef POSIX_SHELL

/* PARSE kernel PLL PPS support */
#undef PPS_SYNC

/* Preset a value for 'tick'? */
#undef PRESET_TICK

/* Preset a value for 'tickadj'? */
#undef PRESET_TICKADJ

/* Should we not IGNPAR (Linux)? */
#undef RAWDCF_NO_IGNPAR

/* enable thread safety */
#undef REENTRANT

/* Basic refclock support? */
#undef REFCLOCK

/* Do we want the ReliantUNIX clock hacks? */
#undef RELIANTUNIX_CLOCK

/* define if sched_yield yields the entire process */
#undef REPLACE_BROKEN_YIELD

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

/* saveconfig mechanism */
#undef SAVECONFIG

/* Do we want the SCO clock hacks? */
#undef SCO5_CLOCK

/* The size of `char *', as computed by sizeof. */
#undef SIZEOF_CHAR_P

/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT

/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG

/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG

/* The size of `pthread_t', as computed by sizeof. */
#undef SIZEOF_PTHREAD_T

/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT

/* The size of `signed char', as computed by sizeof. */
#undef SIZEOF_SIGNED_CHAR

/* The size of `time_t', as computed by sizeof. */
#undef SIZEOF_TIME_T

/* Does SIOCGIFCONF return size in the buffer? */
#undef SIZE_RETURNED_IN_BUFFER

/* Slew always? */
#undef SLEWALWAYS

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at runtime.
	STACK_DIRECTION > 0 => grows toward higher addresses
	STACK_DIRECTION < 0 => grows toward lower addresses
	STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION

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

/* Step, then slew the clock? */
#undef STEP_SLEW

/* Define to 1 if strerror_r returns char *. */
#undef STRERROR_R_CHAR_P

/* canonical system (cpu-vendor-os) of where we should run */
#undef STR_SYSTEM

/* Does Xettimeofday take 1 arg? */
#undef SYSV_TIMEOFDAY

/* Do we need to #define _SVID3 when we #include <termios.h>? */
#undef TERMIOS_NEEDS__SVID3

/* enable thread safety */
#undef THREADSAFE

/* enable thread safety */
#undef THREAD_SAFE

/* Is K_TICKADJ_NAME in nanoseconds? */
#undef TICKADJ_NANO

/* Is K_TICK_NAME in nanoseconds? */
#undef TICK_NANO

/* 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

/* Provide a typedef for uintptr_t? */
#ifndef HAVE_UINTPTR_T
typedef unsigned int	uintptr_t;
#define HAVE_UINTPTR_T	1
#endif

/* What type to use for setsockopt */
#undef TYPEOF_IP_MULTICAST_LOOP

/* Do we set process groups with -pid? */
#undef UDP_BACKWARDS_SETOWN

/* Must we have a CTTY for fsetown? */
#undef USE_FSETOWNCTTY

/* Use OpenSSL's crypto random functions */
#undef USE_OPENSSL_CRYPTO_RAND

/* OK to use snprintb()? */
#undef USE_SNPRINTB

/* Can we use SIGPOLL for tty IO? */
#undef USE_TTY_SIGPOLL

/* Can we use SIGPOLL for UDP? */
#undef USE_UDP_SIGPOLL

/* Version number of package */
#undef VERSION

/* vsnprintf expands "%m" to strerror(errno) */
#undef VSNPRINTF_PERCENT_M

/* configure --enable-ipv6 */
#undef WANT_IPV6

/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
   significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
#  define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
#  undef WORDS_BIGENDIAN
# endif
#endif

/* routine worker child proc uses to exit. */
#undef WORKER_CHILD_EXIT

/* Define to 1 if on MINIX. */
#undef _MINIX

/* Define to 2 if the system does not provide POSIX.1 features except with
   this defined. */
#undef _POSIX_1_SOURCE

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

/* enable thread safety */
#undef _REENTRANT

/* enable thread safety */
#undef _SGI_MP_SOURCE

/* enable thread safety */
#undef _THREADSAFE

/* enable thread safety */
#undef _THREAD_SAFE

/* Define to 500 only on HP-UX. */
#undef _XOPEN_SOURCE

/* Are we _special_? */
#undef __APPLE_USE_RFC_3542

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

/* Enable extensions on AIX 3, Interix.  */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable GNU extensions on systems that have them.  */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable threading extensions on Solaris.  */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions on HP NonStop.  */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable general extensions on Solaris.  */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif


/* deviant */
#undef adjtimex

/* 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 to the widest signed integer type if <stdint.h> and <inttypes.h> do
   not define. */
#undef intmax_t

/* deviant */
#undef ntp_adjtime

/* deviant */
#undef ntp_gettime

/* 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

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

	
	    #if !defined(_KERNEL) && !defined(PARSESTREAM)
	    /*
	     * stdio.h must be included after _GNU_SOURCE is defined
	     * but before #define snprintf rpl_snprintf
	     */
	    # include <stdio.h>	
	    #endif
	

/* Define to rpl_snprintf if the replacement function should be used. */
#undef snprintf

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

/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
   do not define. */
#undef uintmax_t

/* Define to the type of an unsigned integer type wide enough to hold a
   pointer, if such a type exists, and if the system does not define it. */
#undef uintptr_t

/* Define as `fork' if `vfork' does not work. */
#undef vfork

/* Define to empty if the keyword `volatile' does not work. Warning: valid
   code using `volatile' can become incorrect without. Disable with care. */
#undef volatile

/* Define to rpl_vsnprintf if the replacement function should be used. */
#undef vsnprintf


#ifndef MPINFOU_PREDECLARED
# define MPINFOU_PREDECLARED
typedef union mpinfou {
	struct pdk_mpinfo *pdkptr;
	struct mpinfo *pikptr;
} mpinfou_t;
#endif



	#if !defined(_KERNEL) && !defined(PARSESTREAM)
	# if defined(HW_WANT_RPL_VSNPRINTF)
	#  if defined(__cplusplus)
	extern "C" {
	# endif
	# include <stdarg.h>
	int rpl_vsnprintf(char *, size_t, const char *, va_list);
	# if defined(__cplusplus)
	}
	#  endif
	# endif
	# if defined(HW_WANT_RPL_SNPRINTF)
	#  if defined(__cplusplus)
	extern "C" {
	#  endif
	int rpl_snprintf(char *, size_t, const char *, ...);
	#  if defined(__cplusplus)
	}
	#  endif
	# endif
	#endif	/* !defined(_KERNEL) && !defined(PARSESTREAM) */