File: autoconf.h.in

package info (click to toggle)
squid3 3.4.8-6
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 31,084 kB
  • sloc: cpp: 165,325; ansic: 21,998; sh: 12,166; makefile: 5,964; perl: 2,153; sql: 322; awk: 118
file content (1602 lines) | stat: -rw-r--r-- 43,585 bytes parent folder | download | duplicates (3)
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
/* include/autoconf.h.in.  Generated from configure.ac by autoheader.  */

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

/* Defines how many threads aufs uses for I/O */
#undef AUFS_IO_THREADS

/* If you are upset that the cachemgr.cgi form comes up with the hostname
   field blank, then define this to getfullhostname() */
#undef CACHEMGR_HOSTNAME

/* Host type from configure */
#undef CONFIG_HOST_TYPE

/* Default COSS membuf size */
#undef COSS_MEMBUF_SZ

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

/* Default FD_SETSIZE value */
#undef DEFAULT_FD_SETSIZE

/* The install prefix */
#undef DEFAULT_PREFIX

/* Enable following X-Forwarded-For headers */
#undef FOLLOW_X_FORWARDED_FOR

/* If gettimeofday is known to take only one argument */
#undef GETTIMEOFDAY_NO_TZP

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

/* Define to 1 if you have the <algorithm> header file. */
#undef HAVE_ALGORITHM

/* 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 `argz_add' function. */
#undef HAVE_ARGZ_ADD

/* Define to 1 if you have the `argz_append' function. */
#undef HAVE_ARGZ_APPEND

/* Define to 1 if you have the `argz_count' function. */
#undef HAVE_ARGZ_COUNT

/* Define to 1 if you have the `argz_create_sep' function. */
#undef HAVE_ARGZ_CREATE_SEP

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

/* Define to 1 if you have the `argz_insert' function. */
#undef HAVE_ARGZ_INSERT

/* Define to 1 if you have the `argz_next' function. */
#undef HAVE_ARGZ_NEXT

/* Define to 1 if you have the `argz_stringify' function. */
#undef HAVE_ARGZ_STRINGIFY

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

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

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

/* Define to 1 if you have __sync_add_and_fetch() and such */
#undef HAVE_ATOMIC_OPS

/* Basic auth module is built */
#undef HAVE_AUTH_MODULE_BASIC

/* Digest auth module is built */
#undef HAVE_AUTH_MODULE_DIGEST

/* Negotiate auth module is built */
#undef HAVE_AUTH_MODULE_NEGOTIATE

/* NTLM auth module is built */
#undef HAVE_AUTH_MODULE_NTLM

/* Define to 1 if you have the `backtrace_symbols_fd' function. */
#undef HAVE_BACKTRACE_SYMBOLS_FD

/* Define to 1 if you have the `bcopy' function. */
#undef HAVE_BCOPY

/* Define to 1 if Heimdal krb5.h is broken for C++ */
#undef HAVE_BROKEN_HEIMDAL_KRB5_H

/* Define to 1 if Solaris krb5.h is broken for C++ */
#undef HAVE_BROKEN_SOLARIS_KRB5_H

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

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

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

/* Define to 1 if you have the `bswap_16' function. */
#undef HAVE_BSWAP_16

/* Define to 1 if you have the `bswap_32' function. */
#undef HAVE_BSWAP_32

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

/* Define to 1 if you have the <cassert> header file. */
#undef HAVE_CASSERT

/* Define to 1 if you have the <climits> header file. */
#undef HAVE_CLIMITS

/* Define to 1 if you have the `closedir' function. */
#undef HAVE_CLOSEDIR

/* The system provides struct cmsghdr */
#undef HAVE_CMSGHDR

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

/* Define to 1 if CMSG_SPACE is constant */
#undef HAVE_CONSTANT_CMSG_SPACE

/* Define to 1 if you have the <cppunit/extensions/HelperMacros.h> header
   file. */
#undef HAVE_CPPUNIT_EXTENSIONS_HELPERMACROS_H

/* Support setting CPU affinity for workers */
#undef HAVE_CPU_AFFINITY

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

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

/* Define to 1 if you have the <cstdarg> header file. */
#undef HAVE_CSTDARG

/* Define to 1 if you have the <cstdio> header file. */
#undef HAVE_CSTDIO

/* Define to 1 if you have the <cstdlib> header file. */
#undef HAVE_CSTDLIB

/* Define to 1 if you have the <cstring> header file. */
#undef HAVE_CSTRING

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

/* define if the compiler supports basic C++11 syntax */
#undef HAVE_CXX11

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

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

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

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

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

/* Define if you have the GNU dld library. */
#undef HAVE_DLD

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

/* Define to 1 if you have the `dlerror' function. */
#undef HAVE_DLERROR

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

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

/* Define to 1 if you have the `drand48' function. */
#undef HAVE_DRAND48

/* Define if you have the _dyld_func_lookup function. */
#undef HAVE_DYLD

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

/* Define to 1 if you have error_message */
#undef HAVE_ERROR_MESSAGE

/* Define to 1 if the system has the type `error_t'. */
#undef HAVE_ERROR_T

/* Define to 1 if you have the <et/com_err.h> header file. */
#undef HAVE_ET_COM_ERR_H

/* Define to 1 if you have the `eui64_aton' function. */
#undef HAVE_EUI64_ATON

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

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

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

/* fd_mask is defined by the system headers */
#undef HAVE_FD_MASK

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

/* Define to 1 if you have the <fstream> header file. */
#undef HAVE_FSTREAM

/* "Define to 1 if aufs filesystem module is build" */
#undef HAVE_FS_AUFS

/* "Define to 1 if coss filesystem module is build" */
#undef HAVE_FS_COSS

/* "Define to 1 if diskd filesystem module is build" */
#undef HAVE_FS_DISKD

/* "Define to 1 if rock filesystem module is build" */
#undef HAVE_FS_ROCK

/* "Define to 1 if ufs filesystem module is build" */
#undef HAVE_FS_UFS

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

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

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

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

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

/* Define to 1 if you have the `getpass' function. */
#undef HAVE_GETPASS

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

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

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

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

/* Define to 1 if you have krb5_get_init_creds_keytab */
#undef HAVE_GET_INIT_CREDS_KEYTAB

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

/* Define to 1 if you have the `glob' function. */
#undef HAVE_GLOB

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

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

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

/* GSSAPI support */
#undef HAVE_GSSAPI

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

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

/* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_KRB5_H

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

/* Define to 1 if you have the `gsskrb5_extract_authz_data_from_sec_context'
   function. */
#undef HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT

/* Define to 1 if you have gss_map_name_to_any */
#undef HAVE_GSS_MAP_ANY_TO_ANY

/* Define to 1 if you have the `gss_map_name_to_any' function. */
#undef HAVE_GSS_MAP_NAME_TO_ANY

/* Define to 1 if you have Heimdal Kerberos */
#undef HAVE_HEIMDAL_KERBEROS

/* Define to 1 if you have the `htobe16' function. */
#undef HAVE_HTOBE16

/* Define to 1 if you have the `htole16' function. */
#undef HAVE_HTOLE16

/* Define to 1 if you have the `inet_ntop' function. */
#undef HAVE_INET_NTOP

/* Define to 1 if you have the `inet_pton' function. */
#undef HAVE_INET_PTON

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

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

/* Define to 1 if you have the `ioctl' function. */
#undef HAVE_IOCTL

/* Define to 1 if you have the <iomanip> header file. */
#undef HAVE_IOMANIP

/* Define to 1 if you have the <iosfwd> header file. */
#undef HAVE_IOSFWD

/* Define to 1 if you have the <iostream> header file. */
#undef HAVE_IOSTREAM

/* The system provides struct iovec */
#undef HAVE_IOVEC

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

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

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

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

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

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

/* Define to 1 if you have the <kerberosV/gssapi.h> header file. */
#undef HAVE_KERBEROSV_GSSAPI_H

/* Define to 1 if you have the `kqueue' function. */
#undef HAVE_KQUEUE

/* KRB5 support */
#undef HAVE_KRB5

/* Define to 1 if you have krb5_get_error_message */
#undef HAVE_KRB5_GET_ERROR_MESSAGE

/* Define to 1 if you have krb5_get_err_text */
#undef HAVE_KRB5_GET_ERR_TEXT

/* Define to 1 if you krb5_get_init_creds_free requires krb5_context */
#undef HAVE_KRB5_GET_INIT_CREDS_FREE_CONTEXT

/* Define to 1 if you have krb5_get_init_creds_opt_alloc */
#undef HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC

/* Define to 1 if you have krb5_get_max_time_skew */
#undef HAVE_KRB5_GET_MAX_TIME_SKEW

/* Define to 1 if you have krb5_get_profile */
#undef HAVE_KRB5_GET_PROFILE

/* Define to 1 if you have krb5_get_renewed_creds */
#undef HAVE_KRB5_GET_RENEWED_CREDS

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

/* Define to 1 if you have krb5_kt_free_entry */
#undef HAVE_KRB5_KT_FREE_ENTRY

/* Define if kerberos has MEMORY: cache support */
#undef HAVE_KRB5_MEMORY_CACHE

/* Define to 1 if you have krb5_pac */
#undef HAVE_KRB5_PAC

/* Define to 1 if you have krb5_principal_get_realm */
#undef HAVE_KRB5_PRINCIPAL_GET_REALM

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

/* LDAP support */
#undef HAVE_LDAP

/* Define to 1 if you have ldapssl_client_init */
#undef HAVE_LDAPSSL_CLIENT_INIT

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

/* Define to 1 if you have LDAP_REBINDPROC_CALLBACK */
#undef HAVE_LDAP_REBINDPROC_CALLBACK

/* Define to 1 if you have LDAP_REBIND_FUNCTION */
#undef HAVE_LDAP_REBIND_FUNCTION

/* Define to 1 if you have LDAP_REBIND_PROC */
#undef HAVE_LDAP_REBIND_PROC

/* Define to 1 if you have LDAP_SCOPE_DEFAULT */
#undef HAVE_LDAP_SCOPE_DEFAULT

/* Define to 1 if you have ldap_start_tls_s */
#undef HAVE_LDAP_START_TLS_S

/* Define to 1 if you have ldap_url_desc2str */
#undef HAVE_LDAP_URL_DESC2STR

/* Define to 1 if you have LDAPURLDesc.lud_scheme */
#undef HAVE_LDAP_URL_LUD_SCHEME

/* Define to 1 if you have ldap_url_parse */
#undef HAVE_LDAP_URL_PARSE

/* Define to 1 if you have the `cap' library (-lcap). */
#undef HAVE_LIBCAP

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

/* Define to 1 if you have the `dl' library (-ldl). */
#undef HAVE_LIBDL

/* Define if libdlloader will be built on this platform */
#undef HAVE_LIBDLLOADER

/* Define to 1 if you have the expat library */
#undef HAVE_LIBEXPAT

/* Define to 1 if you have the `gnumalloc' library (-lgnumalloc). */
#undef HAVE_LIBGNUMALLOC

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

/* Define to 1 if you have the `malloc' library (-lmalloc). */
#undef HAVE_LIBMALLOC

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

/* Define to 1 if you have the
   <libnetfilter_conntrack/libnetfilter_conntrack_tcp.h> header file. */
#undef HAVE_LIBNETFILTER_CONNTRACK_LIBNETFILTER_CONNTRACK_TCP_H

/* Define to 1 if you have the libxml2 library */
#undef HAVE_LIBXML2

/* Define to 1 if you have the <libxml/HTMLparser.h> header file. */
#undef HAVE_LIBXML_HTMLPARSER_H

/* Define to 1 if you have the <libxml/HTMLtree.h> header file. */
#undef HAVE_LIBXML_HTMLTREE_H

/* Define to 1 if you have the <libxml/parser.h> header file. */
#undef HAVE_LIBXML_PARSER_H

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

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

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

/* Define to 1 if you have the <linux/netfilter_ipv6/ip6_tables.h> header
   file. */
#undef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H

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

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

/* Define to 1 if you have the <list> header file. */
#undef HAVE_LIST

/* Define to 1 if you have the `lrand48' function. */
#undef HAVE_LRAND48

/* Define this if a modern libltdl is already installed */
#undef HAVE_LTDL

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

/* Define to 1 if you have the <mach-o/dyld.h> header file. */
#undef HAVE_MACH_O_DYLD_H

/* Define to 1 if you have the `mallinfo' function. */
#undef HAVE_MALLINFO

/* Define to 1 if you have the `mallocblksize' function. */
#undef HAVE_MALLOCBLKSIZE

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

/* Define to 1 if you have the `mallopt' function. */
#undef HAVE_MALLOPT

/* Define to 1 if you have the <map> header file. */
#undef HAVE_MAP

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

/* Define to 1 if max_skew in struct krb5_context */
#undef HAVE_MAX_SKEW_IN_KRB5_CONTEXT

/* Define to 1 if you have the `memcpy' function. */
#undef HAVE_MEMCPY

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

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

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

/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET

/* Define to 1 if you have MIT Kerberos */
#undef HAVE_MIT_KERBEROS

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

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

/* mode_t is defined by the system headers */
#undef HAVE_MODE_T

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

/* Mozilla LDAP SDK support */
#undef HAVE_MOZILLA_LDAP_SDK

/* Define to 1 if you have the <mozldap/ldap.h> header file. */
#undef HAVE_MOZLDAP_LDAP_H

/* The system provides struct msghdr */
#undef HAVE_MSGHDR

/* Define to 1 if you have the `mstats' function. */
#undef HAVE_MSTATS

/* mtyp_t is defined by the system headers */
#undef HAVE_MTYP_T

/* 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/icmp6.h> header file. */
#undef HAVE_NETINET_ICMP6_H

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Define to 1 if you have the <net/if_dl.h> header file. */
#undef HAVE_NET_IF_DL_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/pfvar.h> header file. */
#undef HAVE_NET_PFVAR_H

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

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

/* Define to 1 if nullptr is supported */
#undef HAVE_NULLPTR

/* Define to 1 if nullptr_t is supported */
#undef HAVE_NULLPTR_T

/* Define to 1 if you have the `opendir' function. */
#undef HAVE_OPENDIR

/* OpenLDAP support */
#undef HAVE_OPENLDAP

/* Define to 1 if you have the <openssl/engine.h> header file. */
#undef HAVE_OPENSSL_ENGINE_H

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

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

/* Define to 1 if you have the <openssl/opensslv.h> header file. */
#undef HAVE_OPENSSL_OPENSSLV_H

/* Define to 1 if you have the <openssl/ssl.h> header file. */
#undef HAVE_OPENSSL_SSL_H

/* Define to 1 if you have the <openssl/txt_db.h> header file. */
#undef HAVE_OPENSSL_TXT_DB_H

/* Define to 1 if you have the <openssl/x509v3.h> header file. */
#undef HAVE_OPENSSL_X509V3_H

/* Define to 1 if you have the <ostream> header file. */
#undef HAVE_OSTREAM

/* pad128_t is defined in system headers */
#undef HAVE_PAD128_T

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

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

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

/* Define to 1 if you have the `prctl' function. */
#undef HAVE_PRCTL

/* Define if libtool can extract symbol lists from object files. */
#undef HAVE_PRELOADED_SYMBOLS

/* Define to 1 if you have profile_get_integer */
#undef HAVE_PROFILE_GET_INTEGER

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

/* Define to 1 if you have profile_release */
#undef HAVE_PROFILE_RELEASE

/* Define to 1 if you have the `psignal' function. */
#undef HAVE_PSIGNAL

/* Define to 1 if you have the `pthread_attr_setschedparam' function. */
#undef HAVE_PTHREAD_ATTR_SETSCHEDPARAM

/* Define to 1 if you have the `pthread_attr_setscope' function. */
#undef HAVE_PTHREAD_ATTR_SETSCOPE

/* Define to 1 if you have the `pthread_setschedparam' function. */
#undef HAVE_PTHREAD_SETSCHEDPARAM

/* Define to 1 if you have the `pthread_sigmask' function. */
#undef HAVE_PTHREAD_SIGMASK

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

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

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

/* Define to 1 if you have the `readdir' function. */
#undef HAVE_READDIR

/* Define to 1 if you have the `regcomp' function. */
#undef HAVE_REGCOMP

/* Define to 1 if you have the `regexec' function. */
#undef HAVE_REGEXEC

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

/* Define to 1 if you have the `regfree' function. */
#undef HAVE_REGFREE

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

/* Define to 1 if you have the `rint' function. */
#undef HAVE_RINT

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

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

/* Define to 1 if Mac Darwin without sasl.h */
#undef HAVE_SASL_DARWIN

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

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

/* Define to 1 if you have the `sched_getaffinity' function. */
#undef HAVE_SCHED_GETAFFINITY

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

/* Define to 1 if you have the `sched_setaffinity' function. */
#undef HAVE_SCHED_SETAFFINITY

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

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

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

/* Define to 1 if you have the `setgroups' function. */
#undef HAVE_SETGROUPS

/* Define to 1 if you have the `setpgrp' function. */
#undef HAVE_SETPGRP

/* Yay! Another Linux brokenness. Knowing that setresuid() exists is not
   enough, because RedHat 5.0 declares setresuid() but does not implement it.
   */
#undef HAVE_SETRESUID

/* 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 <shadow.h> header file. */
#undef HAVE_SHADOW_H

/* Define if you have the shl_load function. */
#undef HAVE_SHL_LOAD

/* Support shared memory features */
#undef HAVE_SHM

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

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

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

/* Defined if struct sockaddr_in6 has sin6_len */
#undef HAVE_SIN6_LEN_IN_SAI

/* Define if sockaddr_in has field sin_len */
#undef HAVE_SIN_LEN_IN_SAI

/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF

/* The system provides sockaddr_un */
#undef HAVE_SOCKADDR_UN

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

/* socklen_t is defined by the system headers */
#undef HAVE_SOCKLEN_T

/* SPNEGO support */
#undef HAVE_SPNEGO

/* Define to 1 if you have the `srand48' function. */
#undef HAVE_SRAND48

/* Define to 1 if you have the `srandom' function. */
#undef HAVE_SRANDOM

/* Define to 1 if you have the <sstream> header file. */
#undef HAVE_SSTREAM

/* Define if sockaddr_storage has field ss_len */
#undef HAVE_SS_LEN_IN_SS

/* Define to 1 if you have the `statfs' function. */
#undef HAVE_STATFS

/* set to 1 if our system has statvfs(), and if it actually works */
#undef HAVE_STATVFS

/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_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 <stdexcept> header file. */
#undef HAVE_STDEXCEPT

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

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

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

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

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

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

/* MacOS brokenness: strnstr() can overrun on that system */
#undef HAVE_STRNSTR

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

/* Define to 1 if `ip_hl' is a member of `struct iphdr'. */
#undef HAVE_STRUCT_IPHDR_IP_HL

/* The system provides struct mallinfo */
#undef HAVE_STRUCT_MALLINFO

/* Define to 1 if `mxfast' is a member of `struct mallinfo'. */
#undef HAVE_STRUCT_MALLINFO_MXFAST

/* The system provides struct rusage */
#undef HAVE_STRUCT_RUSAGE

/* Define to 1 if `tm_gmtoff' is a member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_GMTOFF

/* Sun LDAP SDK support */
#undef HAVE_SUN_LDAP_SDK

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

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

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

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

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

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

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

/* Define to 1 if you have the <sys/devpoll.h> header file. */
#undef HAVE_SYS_DEVPOLL_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/dl.h> header file. */
#undef HAVE_SYS_DL_H

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

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

/* Define to 1 if you have the <sys/event.h> header file. */
#undef HAVE_SYS_EVENT_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/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H

/* Define to 1 if you have the <sys/ipc.cc> header file. */
#undef HAVE_SYS_IPC_CC

/* Define to 1 if you have the <sys/md5.h> header file. */
#undef HAVE_SYS_MD5_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/mount.h> header file. */
#undef HAVE_SYS_MOUNT_H

/* Define to 1 if you have the <sys/msg.h> header file. */
#undef HAVE_SYS_MSG_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/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_H

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

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

/* Define to 1 if you have the <sys/shm.h> header file. */
#undef HAVE_SYS_SHM_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/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_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/syscall.h> header file. */
#undef HAVE_SYS_SYSCALL_H

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

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

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

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

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

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

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

/* Define to 1 if you have the `tempnam' function. */
#undef HAVE_TEMPNAM

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

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

/* Define to 1 if std::unique_ptr<T> is supported */
#undef HAVE_UNIQUE_PTR

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

/* System supports unix sockets */
#undef HAVE_UNIXSOCKET

/* upad128_t is defined in system headers */
#undef HAVE_UPAD128_T

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

/* Define to 1 if you have the <valgrind/memcheck.h> header file. */
#undef HAVE_VALGRIND_MEMCHECK_H

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

/* The system implements a functional va_copy() */
#undef HAVE_VA_COPY

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

/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF

/* Define to 1 if you have the <w32api/windows.h> header file. */
#undef HAVE_W32API_WINDOWS_H

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

/* Define if you have PSAPI.DLL on Windows systems */
#undef HAVE_WIN32_PSAPI

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

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

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

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

/* This value is set to 1 to indicate that the system argz facility works */
#undef HAVE_WORKING_ARGZ

/* Define to 1 if you have the `write' function. */
#undef HAVE_WRITE

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

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

/* Some systems have __va_copy instead of va_copy */
#undef HAVE___VA_COPY

/* Enable ICAP client features in Squid */
#undef ICAP_CLIENT

/* Enable support for Transparent Proxy on systems using FreeBSD IPFW-style
   firewalling. */
#undef IPFW_TRANSPARENT

/* Enable support for IPF-style transparent proxying */
#undef IPF_TRANSPARENT

/* A dangerous feature which causes Squid to kill its parent process
   (presumably the RunCache script) upon receipt of SIGTERM or SIGINT.
   Deprecated, Use with caution. */
#undef KILL_PARENT_OPT

/* libcap2 headers are broken and clashing with glibc */
#undef LIBCAP_BROKEN

/* libresolv.a has been hacked to export _dns_ttl_ */
#undef LIBRESOLV_DNS_TTL_HACK

/* Enable support for Transparent Proxy on Linux via Netfilter */
#undef LINUX_NETFILTER

/* Define if the OS needs help to load dependent libraries for dlopen(). */
#undef LTDL_DLOPEN_DEPLIBS

/* Define to the system default library search path. */
#undef LT_DLSEARCH_PATH

/* The archive extension */
#undef LT_LIBEXT

/* The archive prefix */
#undef LT_LIBPREFIX

/* Define to the extension used for runtime loadable modules, say, ".so". */
#undef LT_MODULE_EXT

/* Define to the name of the environment variable that determines the run-time
   module search path. */
#undef LT_MODULE_PATH_VAR

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

/* Define to the shared library suffix, say, ".dylib". */
#undef LT_SHARED_EXT

/* If MAXPATHLEN has not been defined */
#undef MAXPATHLEN

/* If we need to declare sys_errlist as extern */
#undef NEED_SYS_ERRLIST

/* Define if dlsym() requires a leading underscore in symbol names. */
#undef NEED_USCORE

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

/* Defined to const or empty depending on the style used by the OS to refer to
   the PAM message dialog func */
#undef PAM_CONV_FUNC_CONST_PARM

/* Enable support for PF-style transparent proxying */
#undef PF_TRANSPARENT

/* Print stack traces on fatal errors */
#undef PRINT_STACK_TRACE

/* Compiler supports %zu printf macro */
#undef PRIuSIZE

/* Base type of the second argument to recv(2) */
#undef RECV_ARG_TYPE

/* The size of `int64_t', as computed by sizeof. */
#undef SIZEOF_INT64_T

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

/* The size of `off_t', as computed by sizeof. */
#undef SIZEOF_OFF_T

/* The size of `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T

/* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P

/* Squid extended build info field for "squid -v" output */
#undef SQUID_BUILD_INFO

/* configure command line used to configure Squid */
#undef SQUID_CONFIGURE_OPTIONS

/* UDP receive buffer size */
#undef SQUID_DETECT_UDP_SO_RCVBUF

/* UDP send buffer size */
#undef SQUID_DETECT_UDP_SO_SNDBUF

/* Maximum number of open filedescriptors */
#undef SQUID_MAXFD

/* Define to enable SNMP monitoring of Squid */
#undef SQUID_SNMP

/* "Define to 1 if the SSL_get_certificate crashes squid" */
#undef SQUID_SSLGETCERTIFICATE_BUGGY

/* "Define to 1 if the TXT_DB uses OPENSSL_PSTRING data member" */
#undef SQUID_SSLTXTDB_PSTRINGDATA

/* "Define to 1 to use squid workaround for buggy versions of
   sk_OPENSSL_PSTRING_value" */
#undef SQUID_STACKOF_PSTRINGDATA_HACK

/* TCP receive buffer size */
#undef SQUID_TCP_SO_RCVBUF

/* TCP send buffer size */
#undef SQUID_TCP_SO_SNDBUF

/* "Define to 1 if the SSL_CTX_new and similar openSSL API functions require
   'const SSL_METHOD *'" */
#undef SQUID_USE_CONST_SSL_METHOD

/* "Define to 1 to use squid workaround for SSL_get_certificate" */
#undef SQUID_USE_SSLGETCERTIFICATE_HACK

/* "Define to 1 to use squid workaround for openssl IMPLEMENT_LHASH_* type
   conversion errors" */
#undef SQUID_USE_SSLLHASH_HACK

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

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

/* common adaptation support */
#undef USE_ADAPTATION

/* Enable support for authentication */
#undef USE_AUTH

/* Use Cache Digests for locating objects in neighbor caches. */
#undef USE_CACHE_DIGESTS

/* Enable support for cbdata debug information */
#undef USE_CBDATA_DEBUG

/* Enable chunked Memory Pools support (experimental) */
#undef USE_CHUNKEDMEMPOOLS

/* Traffic management via "delay pools". */
#undef USE_DELAY_POOLS

/* Use /dev/poll for the IO loop */
#undef USE_DEVPOLL

/* DiskIO modules are expected to be available. */
#undef USE_DISKIO

/* Whether POSIX AIO support is needed. Automatic */
#undef USE_DISKIO_AIO

/* Whether pthreads support is needed. Automatic */
#undef USE_DISKIO_DISKTHREADS

/* Enable DiskIO IpcIo module. */
#undef USE_DISKIO_IPCIO

/* Use dnsserver processes instead of the internal DNS protocol support */
#undef USE_DNSHELPER

/* Disable eCAP support */
#undef USE_ECAP

/* Use epoll() for the IO loop */
#undef USE_EPOLL

/* Use multi-language support on error pages */
#undef USE_ERR_LOCALES

/* Enable Forw/Via database */
#undef USE_FORW_VIA_DB

/* Define if we should use GNU regex */
#undef USE_GNUREGEX

/* Define this to include code for the Hypertext Cache Protocol (HTCP) */
#undef USE_HTCP

/* Define to enable code which volates the HTTP standard specification */
#undef USE_HTTP_VIOLATIONS

/* Define to use Squid ICMP and Network Measurement features (highly
   recommended!) */
#undef USE_ICMP

/* Support for Ident (RFC 931) lookups */
#undef USE_IDENT

/* Enable support for IPv6 */
#undef USE_IPV6

/* Use kqueue() for the IO loop */
#undef USE_KQUEUE

/* Enable code for assisting in finding memory leaks. Not for the faint of
   heart */
#undef USE_LEAKFINDER

/* use libcap to set capabilities required for TPROXY */
#undef USE_LIBCAP

/* Enable support for QOS netfilter mark preservation */
#undef USE_LIBNETFILTERCONNTRACK

/* Support Loadable Modules */
#undef USE_LOADABLE_MODULES

/* Enable support for /dev/pf NAT lookups */
#undef USE_NAT_DEVPF

/* Use poll() for the IO loop */
#undef USE_POLL

/* Enable Zero Penalty Hit QOS. When set, Squid will alter the TOS field of
   HIT responses to help policing network traffic */
#undef USE_QOS_TOS

/* Use select() for the IO loop */
#undef USE_SELECT

/* Use Winsock select() for the IO loop */
#undef USE_SELECT_WIN32

/* Compile the ESI processor and Surrogate header support */
#undef USE_SQUID_ESI

/* Define this to include code which lets you use ethernet addresses. This
   code uses API initially defined in 4.4-BSD. */
#undef USE_SQUID_EUI

/* Define this to include code for SSL gatewaying support */
#undef USE_SSL

/* Use ssl_crtd daemon */
#undef USE_SSL_CRTD

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


/* Enable useage of unlinkd */
#undef USE_UNLINKD

/* Define to enable WCCP */
#undef USE_WCCP

/* Define to enable WCCP V2 */
#undef USE_WCCPv2

/* Enable code supporting MS Windows service mode */
#undef USE_WIN32_SERVICE

/* Define to enable CPU profiling within Squid */
#undef USE_XPROF_STATS

/* Version number of package */
#undef VERSION

/* Valgrind memory debugger support */
#undef WITH_VALGRIND

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

/* Show malloc statistics in status page */
#undef XMALLOC_STATISTICS

/* Enable support for the X-Accelerator-Vary HTTP header */
#undef X_ACCELERATOR_VARY

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

/* Nameserver Counter for IPv6 _res */
#undef _SQUID_RES_NSADDR6_COUNT

/* If _res_ext structure has nsaddr_list member */
#undef _SQUID_RES_NSADDR6_LARRAY

/* If _res structure has _ext.nsaddrs member */
#undef _SQUID_RES_NSADDR6_LPTR

/* Nameserver counter for IPv4 _res */
#undef _SQUID_RES_NSADDR_COUNT

/* If _res structure has ns_list member */
#undef _SQUID_RES_NSADDR_LIST

/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
#undef _UINT32_T

/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
#undef _UINT64_T

/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
#undef _UINT8_T

/* Include inline methods into header file */
#undef _USE_INLINE_

/* Define so that glibc/gnulib argp.h does not typedef error_t. */
#undef __error_t_defined

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

/* Define to a type to use for `error_t' if it is not otherwise available. */
#undef error_t

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

/* Define to the type of a signed integer type of width exactly 16 bits if
   such a type exists and the standard includes do not define it. */
#undef int16_t

/* Define to the type of a signed integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
#undef int32_t

/* Define to the type of a signed integer type of width exactly 64 bits if
   such a type exists and the standard includes do not define it. */
#undef int64_t

/* Define to the type of a signed integer type of width exactly 8 bits if such
   a type exists and the standard includes do not define it. */
#undef int8_t

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

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

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

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

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

/* Define to the type of an unsigned integer type of width exactly 16 bits if
   such a type exists and the standard includes do not define it. */
#undef uint16_t

/* Define to the type of an unsigned integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
#undef uint32_t

/* Define to the type of an unsigned integer type of width exactly 64 bits if
   such a type exists and the standard includes do not define it. */
#undef uint64_t

/* Define to the type of an unsigned integer type of width exactly 8 bits if
   such a type exists and the standard includes do not define it. */
#undef uint8_t