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 | $ git diff debian/
diff --git a/debian/changelog b/debian/changelog
index a35dafc..7608368 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+squid3 (3.3.14-0ubuntu1) UNRELEASED; urgency=medium
+
+ * try 3.3.14
+
+ -- Ubuntu <ubuntu@localhost.localdomain> Mon, 22 Feb 2016 18:43:14 +0000
+
squid3 (3.3.8-1ubuntu6.4) trusty-proposed; urgency=low
* d/squid3.upstart: Use SIGINT to terminate squid and wait at most 40
diff --git a/debian/control b/debian/control
index bb78d67..bcc0f61 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: Luigi Gangitano <luigi@debian.org>
Homepage: http://www.squid-cache.org
Standards-Version: 3.9.4
-Build-Depends: libldap2-dev, libpam0g-dev, libdb-dev, cdbs, libsasl2-dev, debhelper (>=5), libcppunit-dev, libkrb5-dev, comerr-dev, libcap2-dev [linux-any], libecap2-dev, libexpat1-dev, libxml2-dev, autotools-dev, libltdl-dev, dpkg-dev (>= 1.16.1~), pkg-config, libnetfilter-conntrack-dev [linux-any], dh-apparmor, lsb-release
+Build-Depends: libldap2-dev, libpam0g-dev, libdb-dev, cdbs, libsasl2-dev, debhelper (>=5), libcppunit-dev, libkrb5-dev, comerr-dev, libcap2-dev [linux-any], libecap2-dev, libexpat1-dev, libxml2-dev, autotools-dev, libltdl-dev, dpkg-dev (>= 1.16.1~), pkg-config, libnetfilter-conntrack-dev [linux-any], dh-apparmor, lsb-release, dh-autoreconf, libtool
XS-Testsuite: autopkgtest
Package: squid3
diff --git a/debian/patches/series b/debian/patches/series
index 57e9abc..337e3d3 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -5,7 +5,7 @@
90-cf.data.ubuntu.patch
99-ubuntu-ssl-cert-snakeoil.patch
fix-pod2man-config.test.patch
-fix-distribution.patch
-CVE-2014-3609.patch
-fix-icmp-pinger-icmp4-6.patch
-fix-caching-vary-header.patch
+#fix-distribution.patch
+#CVE-2014-3609.patch
+#fix-icmp-pinger-icmp4-6.patch
+#fix-caching-vary-header.patch
diff --git a/debian/rules b/debian/rules
index c157269..376f68d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,6 +18,7 @@ DEB_DH_INSTALL_SOURCEDIR := $(INSTALLDIR)
DEB_INSTALL_DOCS_squid3-common := CONTRIBUTORS CREDITS QUICKSTART RELEASENOTES.html \
SPONSORS
+DEB_AUTO_UPDATE_ACLOCAL := 1.15
DEB_CONFIGURE_EXTRA_FLAGS := --datadir=/usr/share/squid3 \
--sysconfdir=/etc/squid3 \
--mandir=/usr/share/man \
@@ -92,5 +93,12 @@ install/squid3::
install -m 644 -g root debian/usr.sbin.squid3 $(INSTALLDIR)/etc/apparmor.d
dh_apparmor --profile-name=usr.sbin.squid3 -psquid3
+configure:
+ @echo HEREEREREEEEEEEEEE =========
+ cd libltdl && dh_autoreconf
+ dh_autoreconf
+
clean::
+ #dh_autoreconf_clean
+ #dh_clean
# nothing to do
###
$ debuild -S -us -uc
dpkg-buildpackage -rfakeroot -D -us -uc -nc
dpkg-buildpackage: source package squid3
dpkg-buildpackage: source version 3.3.14-0ubuntu1
dpkg-buildpackage: source distribution UNRELEASED
dpkg-buildpackage: source changed by Ubuntu <ubuntu@localhost.localdomain>
dpkg-source --before-build squid3
dpkg-buildpackage: host architecture amd64
dpkg-source: info: applying 01-cf.data.debian.patch
dpkg-source: info: applying 02-makefile-defaults.patch
dpkg-source: info: applying 15-cachemgr-default-config.patch
dpkg-source: info: applying 16-ipc-statedir.patch
dpkg-source: info: applying 90-cf.data.ubuntu.patch
dpkg-source: info: applying 99-ubuntu-ssl-cert-snakeoil.patch
dpkg-source: info: applying fix-pod2man-config.test.patch
debian/rules build
test -x debian/rules
mkdir -p "."
/usr/share/cdbs/1/rules/buildcore.mk:110: CDBS WARNING: DEB_DH_STRIP_ARGS is deprecated since 0.4.85
/usr/share/cdbs/1/rules/buildcore.mk:110: CDBS WARNING: DEB_FIXPERMS_EXCLUDE is deprecated since 0.4.85
if test -e /usr/share/misc/config.guess ; then \
for i in ./lib/libTrie/cfgaux/config.guess ./libltdl/config/config.guess ./cfgaux/config.guess ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/misc/config.guess $i ; \
fi ; \
done ; \
fi
if test -e /usr/share/misc/config.sub ; then \
for i in ./lib/libTrie/cfgaux/config.sub ./libltdl/config/config.sub ./cfgaux/config.sub ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/misc/config.sub $i ; \
fi ; \
done ; \
fi
cd . && aclocal-1.15
touch debian/stamp-autotools-files
chmod a+x /home/ubuntu/ex/squid3/./configure
mkdir -p .
cd . && CFLAGS="-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall" CXXFLAGS="-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security" CPPFLAGS="-Wdate-time -D_FORTIFY_SOURCE=2" LDFLAGS="-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now" /home/ubuntu/ex/squid3/./configure --build=x86_64-linux-gnu --prefix=/usr --includedir="\${prefix}/include" --mandir="\${prefix}/share/man" --infodir="\${prefix}/share/info" --sysconfdir=/etc --localstatedir=/var --libexecdir="\${prefix}/lib/squid3" --srcdir=. --disable-maintainer-mode --disable-dependency-tracking --disable-silent-rules --datadir=/usr/share/squid3 --sysconfdir=/etc/squid3 --mandir=/usr/share/man --enable-inline --enable-async-io=8 --enable-storeio="ufs,aufs,diskd,rock" --enable-removal-policies="lru,heap" --enable-delay-pools --enable-cache-digests --enable-underscores --enable-icap-client --enable-follow-x-forwarded-for --enable-auth-basic="DB,fake,getpwnam,LDAP,MSNT,MSNT-multi-domain,NCSA,NIS,PAM,POP3,RADIUS,SASL,SMB" --enable-auth-digest="file,LDAP" --enable-auth-negotiate="kerberos,wrapper" --enable-auth-ntlm="fake,smb_lm" --enable-external-acl-helpers="file_userip,kerberos_ldap_group,LDAP_group,session,SQL_session,unix_group,wbinfo_group" --enable-url-rewrite-helpers="fake" --enable-eui --enable-esi --enable-icmp --enable-zph-qos --enable-ecap --disable-translation --with-swapdir=/var/spool/squid3 --with-logdir=/var/log/squid3 --with-pidfile=/var/run/squid3.pid --with-filedescriptors=65536 --with-large-files --with-default-user=proxy --enable-linux-netfilter
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '1000' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking simplified host os... linux (version )
checking if g++ supports C++0x features without additional flags... no
checking if g++ supports C++0x features with -std=c++0x... yes
checking if g++ supports C++0x features with -std=gnu++0x... yes
checking for ranlib... ranlib
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking for egrep... /bin/egrep
checking for sh... /bin/sh
checking for false... /bin/false
checking for true... /bin/true
checking for mv... /bin/mv
checking for mkdir... /bin/mkdir
checking for ln... /bin/ln
checking for chmod... /bin/chmod
checking for tr... /usr/bin/tr
checking for rm... /bin/rm
checking for cppunit-config... /usr/bin/cppunit-config
checking for perl... /usr/bin/perl
checking for pod2man... /usr/bin/pod2man
checking for ar... /usr/bin/ar
configure: strict error checking enabled: yes
checking whether to use loadable modules... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/fgrep
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking which extension is used for runtime loadable modules... .so
checking which variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... yes
checking for error_t... yes
checking for argz_add... yes
checking for argz_append... yes
checking for argz_count... yes
checking for argz_create_sep... yes
checking for argz_insert... yes
checking for argz_next... yes
checking for argz_stringify... yes
checking if argz actually works... yes
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for ltdl.h... yes
checking whether lt_dlinterface_register is declared... yes
checking for lt_dladvise_preload in -lltdl... yes
checking where to find libltdl headers...
checking where to find libltdl library... -lltdl
checking for unistd.h... yes
checking for dl.h... no
checking for sys/dl.h... no
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... no
checking for strlcpy... no
checking for library containing dlopen... (cached) -ldl
checking for dlerror... (cached) yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... (cached) no
checking what kind of compiler we're using... gcc
checking for compiler variant... gcc
configure: inlining optimizations enabled: yes
checking for GNU atomic operations support... yes
configure: cbdata debugging enabled: no
configure: xmalloc stats display: no
checking for library containing shm_open... -lrt
checking for DiskIO modules to be enabled... AIO Blocking DiskDaemon DiskThreads IpcIo Mmapped
checking aio.h usability... yes
checking aio.h presence... yes
checking for aio.h... yes
checking for aio_read in -lrt... yes
configure: Native POSIX AIO support detected.
configure: Enabling AIO DiskIO module
configure: Enabling Blocking DiskIO module
configure: Enabling DiskDaemon DiskIO module
checking for pthread_create in -lpthread... yes
configure: Enabling DiskThreads DiskIO module
configure: Enabling IpcIo DiskIO module
configure: Enabling Mmapped DiskIO module
configure: IO Modules built: AIO Blocking DiskDaemon DiskThreads IpcIo Mmapped
configure: Store modules built: ufs aufs diskd rock
configure: Removal policies to build: lru heap
configure: ICMP enabled
configure: Delay pools enabled
configure: Enabling ESI processor and Surrogate header support.
checking for main in -lexpat... yes
checking expat.h usability... yes
checking expat.h presence... yes
checking for expat.h... yes
checking for main in -lxml2... yes
checking location of libxml2 include files... checking libxml/parser.h usability... no
checking libxml/parser.h presence... no
checking for libxml/parser.h... no
configure: Testing in /usr/include/libxml2
checking libxml/parser.h usability... yes
checking libxml/parser.h presence... yes
checking for libxml/parser.h... yes
-I/usr/include/libxml2
checking for libxml/parser.h... (cached) yes
checking libxml/HTMLparser.h usability... yes
checking libxml/HTMLparser.h presence... yes
checking for libxml/HTMLparser.h... yes
checking libxml/HTMLtree.h usability... yes
checking libxml/HTMLtree.h presence... yes
checking for libxml/HTMLtree.h... yes
checking whether to support eCAP... yes, explicitly
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for EXT_LIBECAP... yes
configure: Web Cache Coordination Protocol enabled: yes
configure: Web Cache Coordination V2 Protocol enabled: yes
configure: Kill parent on shutdown hack enabled: no
configure: SNMP support enabled: yes
checking for windows.h... no
checking for sys/sockio.h... no
checking for sys/param.h... yes
checking for net/if_arp.h... yes
checking for net/route.h... yes
checking for net/if_dl.h... no
checking for sys/sysctl.h... yes
configure: EUI (MAC address) controls enabled: yes
configure: HTCP support enabled: yes
configure: SSL gatewaying support enabled: no
configure: Using OpenSSL MD5 implementation: no
configure: Forw/Via database enabled: no
configure: Cache Digests enabled: yes
configure: Setting COSS membuf size to 1048576 bytes
configure: enabling select syscall for net I/O: auto
configure: enabling poll syscall for net I/O: auto
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking for kqueue... no
configure: enabling kqueue for net I/O: no
configure: enabling epoll syscall for net I/O: auto
checking for library containing epoll_ctl... none required
checking sys/epoll.h usability... yes
checking sys/epoll.h presence... yes
checking for sys/epoll.h... yes
checking if epoll works... yes
configure: enabling /dev/poll for net I/O: auto
checking for ioctl... yes
checking for write... yes
checking sys/devpoll.h usability... no
checking sys/devpoll.h presence... no
checking for sys/devpoll.h... no
configure: HTTP violations support enabled: yes
configure: FreeBSD IPFW-based transparent proxying enabled: no
configure: IPF-based transparent proxying requested: no
configure: PF-based transparent proxying requested: auto
configure: Linux Netfilter support requested: yes
configure: Linux Netfilter Conntrack support requested: auto
checking for library containing nfct_query... -lnetfilter_conntrack
checking libnetfilter_conntrack/libnetfilter_conntrack.h usability... yes
checking libnetfilter_conntrack/libnetfilter_conntrack.h presence... yes
checking for libnetfilter_conntrack/libnetfilter_conntrack.h... yes
checking libnetfilter_conntrack/libnetfilter_conntrack_tcp.h usability... yes
checking libnetfilter_conntrack/libnetfilter_conntrack_tcp.h presence... yes
checking for libnetfilter_conntrack/libnetfilter_conntrack_tcp.h... yes
configure: Using POSIX_V6_LP64_OFF64 build environment
configure: Leak Finder enabled: no
configure: Support for X-Forwarded-For enabled: yes
configure: Support for Ident lookups enabled: yes
configure: Default hosts file set to: /etc/hosts
configure: Authentication support enabled: yes
IO::File=IO(0x16fdfc8) around line 1: No name given for document
POD document had syntax errors at /usr/bin/pod2man line 68.
configure: Basic auth helper DB ... found but cannot be built
WARNING: Samba smbclient not found in default location. basic_smb_auth may not work on this machine
configure: Basic auth helpers to be built: fake getpwnam LDAP MSNT MSNT-multi-domain NCSA NIS PAM POP3 RADIUS SASL SMB
configure: NTLM auth helpers built: fake smb_lm
configure: Negotiate auth helpers built: kerberos wrapper
configure: Digest auth helpers built: file LDAP
IO::File=IO(0x13f9fc8) around line 1: No name given for document
POD document had syntax errors at /usr/bin/pod2man line 68.
configure: Log daemon helper DB ... found but cannot be built
configure: Log daemon helpers built: file
checking for krb5-config... yes
checking gssapi.h usability... yes
checking gssapi.h presence... yes
checking for gssapi.h... yes
checking gssapi/gssapi.h usability... yes
checking gssapi/gssapi.h presence... yes
checking for gssapi/gssapi.h... yes
checking gssapi/gssapi_krb5.h usability... yes
checking gssapi/gssapi_krb5.h presence... yes
checking for gssapi/gssapi_krb5.h... yes
checking gssapi/gssapi_generic.h usability... yes
checking gssapi/gssapi_generic.h presence... yes
checking for gssapi/gssapi_generic.h... yes
checking profile.h usability... yes
checking profile.h presence... yes
checking for profile.h... yes
checking for broken Solaris krb5.h... no
checking for broken Heimdal krb5.h... no
checking krb5.h usability... yes
checking krb5.h presence... yes
checking for krb5.h... yes
checking com_err.h usability... yes
checking com_err.h presence... yes
checking for com_err.h... yes
checking et/com_err.h usability... yes
checking et/com_err.h presence... yes
checking for et/com_err.h... yes
checking for max_skew in struct krb5_context... no
checking for error_message in -lcom_err... yes
checking for krb5_get_err_text in -lkrb5... no
checking for krb5_get_error_message in -lkrb5... yes
checking whether krb5_kt_free_entry is declared... yes
checking for krb5_kt_free_entry in -lkrb5... yes
checking for krb5_get_init_creds_keytab in -lkrb5... yes
checking for krb5_get_max_time_skew in -lkrb5... no
checking for krb5_get_profile in -lkrb5... yes
checking for profile_get_integer in -lkrb5... yes
checking for profile_release in -lkrb5... yes
checking for memory cache... yes
checking for working gssapi... yes
checking for spnego support... yes
checking for working krb5... yes
configure: external acl helper file_userip ... found but cannot be built
configure: external acl helper kerberos_ldap_group ... found but cannot be built
int db_env_create __P((DB_ENV **, u_int32_t));
IO::File=IO(0x208b008) around line 1: No name given for document
POD document had syntax errors at /usr/bin/pod2man line 68.
configure: external acl helper SQL_session ... found but cannot be built
WARNING: Samba wbinfo not found in default location. ext_wbinfo_group_acl may not work on this machine
configure: External acl helpers built: LDAP_group session unix_group wbinfo_group
configure: URL rewrite helper candidates: fake
configure: URL rewrite helpers built: fake
configure: Valgrind debug support enabled: no
configure: MS Windows service mode enabled: no
checking sasl/sasl.h usability... yes
checking sasl/sasl.h presence... yes
checking for sasl/sasl.h... yes
checking sasl.h usability... no
checking sasl.h presence... no
checking for sasl.h... no
checking for sasl_errstring in -lsasl2... yes
configure: unlinkd enabled: yes
configure: Automatically print stack trace on fatal errors: no
configure: CPU profiling enabled: no
configure: X-Accelerator-Vary support enabled: no
configure: using system installed cppunit version 1.13.2
checking cppunit/extensions/HelperMacros.h usability... yes
checking cppunit/extensions/HelperMacros.h presence... yes
checking for cppunit/extensions/HelperMacros.h... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... yes
checking algorithm usability... yes
checking algorithm presence... yes
checking for algorithm... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking arpa/nameser.h usability... yes
checking arpa/nameser.h presence... yes
checking for arpa/nameser.h... yes
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking bstring.h usability... no
checking bstring.h presence... no
checking for bstring.h... no
checking cassert usability... yes
checking cassert presence... yes
checking for cassert... yes
checking crypt.h usability... yes
checking crypt.h presence... yes
checking for crypt.h... yes
checking cstdarg usability... yes
checking cstdarg presence... yes
checking for cstdarg... yes
checking cstdlib usability... yes
checking cstdlib presence... yes
checking for cstdlib... yes
checking cstring usability... yes
checking cstring presence... yes
checking for cstring... yes
checking list usability... yes
checking list presence... yes
checking for list... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking fnmatch.h usability... yes
checking fnmatch.h presence... yes
checking for fnmatch.h... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking glob.h usability... yes
checking glob.h presence... yes
checking for glob.h... yes
checking gnumalloc.h usability... no
checking gnumalloc.h presence... no
checking for gnumalloc.h... no
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking iosfwd usability... yes
checking iosfwd presence... yes
checking for iosfwd... yes
checking iomanip usability... yes
checking iomanip presence... yes
checking for iomanip... yes
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking fstream usability... yes
checking fstream presence... yes
checking for fstream... yes
checking climits usability... yes
checking climits presence... yes
checking for climits... yes
checking ip_compat.h usability... no
checking ip_compat.h presence... no
checking for ip_compat.h... no
checking ip_fil_compat.h usability... no
checking ip_fil_compat.h presence... no
checking for ip_fil_compat.h... no
checking ip_fil.h usability... no
checking ip_fil.h presence... no
checking for ip_fil.h... no
checking ip_nat.h usability... no
checking ip_nat.h presence... no
checking for ip_nat.h... no
checking ipl.h usability... no
checking ipl.h presence... no
checking for ipl.h... no
checking lber.h usability... yes
checking lber.h presence... yes
checking for lber.h... yes
checking ldap.h usability... yes
checking ldap.h presence... yes
checking for ldap.h... yes
checking libc.h usability... no
checking libc.h presence... no
checking for libc.h... no
checking limits usability... yes
checking limits presence... yes
checking for limits... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking linux/posix_types.h usability... yes
checking linux/posix_types.h presence... yes
checking for linux/posix_types.h... yes
checking linux/types.h usability... yes
checking linux/types.h presence... yes
checking for linux/types.h... yes
checking machine/byte_swap.h usability... no
checking machine/byte_swap.h presence... no
checking for machine/byte_swap.h... no
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking map usability... yes
checking map presence... yes
checking for map... yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking memory.h usability... yes
checking memory.h presence... yes
checking for memory.h... yes
checking memory usability... yes
checking memory presence... yes
checking for memory... yes
checking mount.h usability... no
checking mount.h presence... no
checking for mount.h... no
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking netinet/in_systm.h usability... yes
checking netinet/in_systm.h presence... yes
checking for netinet/in_systm.h... yes
checking netinet/ip_fil_compat.h usability... no
checking netinet/ip_fil_compat.h presence... no
checking for netinet/ip_fil_compat.h... no
checking openssl/err.h usability... no
checking openssl/err.h presence... no
checking for openssl/err.h... no
checking openssl/md5.h usability... no
checking openssl/md5.h presence... no
checking for openssl/md5.h... no
checking openssl/opensslv.h usability... no
checking openssl/opensslv.h presence... no
checking for openssl/opensslv.h... no
checking openssl/ssl.h usability... no
checking openssl/ssl.h presence... no
checking for openssl/ssl.h... no
checking openssl/x509v3.h usability... no
checking openssl/x509v3.h presence... no
checking for openssl/x509v3.h... no
checking netinet/tcp.h usability... yes
checking netinet/tcp.h presence... yes
checking for netinet/tcp.h... yes
checking openssl/engine.h usability... no
checking openssl/engine.h presence... no
checking for openssl/engine.h... no
checking openssl/txt_db.h usability... no
checking openssl/txt_db.h presence... no
checking for openssl/txt_db.h... no
checking ostream usability... yes
checking ostream presence... yes
checking for ostream... yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking regex.h usability... yes
checking regex.h presence... yes
checking for regex.h... yes
checking sched.h usability... yes
checking sched.h presence... yes
checking for sched.h... yes
checking security/pam_appl.h usability... yes
checking security/pam_appl.h presence... yes
checking for security/pam_appl.h... yes
checking siginfo.h usability... no
checking siginfo.h presence... no
checking for siginfo.h... no
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking sstream usability... yes
checking sstream presence... yes
checking for sstream... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking stdbool.h usability... yes
checking stdbool.h presence... yes
checking for stdbool.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking stdexcept usability... yes
checking stdexcept presence... yes
checking for stdexcept... yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking stdlib.h usability... yes
checking stdlib.h presence... yes
checking for stdlib.h... yes
checking string usability... yes
checking string presence... yes
checking for string... yes
checking string.h usability... yes
checking string.h presence... yes
checking for string.h... yes
checking strings.h usability... yes
checking strings.h presence... yes
checking for strings.h... yes
checking sys/bitypes.h usability... yes
checking sys/bitypes.h presence... yes
checking for sys/bitypes.h... yes
checking sys/bswap.h usability... no
checking sys/bswap.h presence... no
checking for sys/bswap.h... no
checking sys/endian.h usability... no
checking sys/endian.h presence... no
checking for sys/endian.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking for sys/param.h... (cached) yes
checking sys/prctl.h usability... yes
checking sys/prctl.h presence... yes
checking for sys/prctl.h... yes
checking sys/md5.h usability... no
checking sys/md5.h presence... no
checking for sys/md5.h... no
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking sys/msg.h usability... yes
checking sys/msg.h presence... yes
checking for sys/msg.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/stat.h usability... yes
checking sys/stat.h presence... yes
checking for sys/stat.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking syscall.h usability... yes
checking syscall.h presence... yes
checking for syscall.h... yes
checking sys/syscall.h usability... yes
checking sys/syscall.h presence... yes
checking for sys/syscall.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/types.h usability... yes
checking sys/types.h presence... yes
checking for sys/types.h... yes
checking sys/uio.h usability... yes
checking sys/uio.h presence... yes
checking for sys/uio.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/vfs.h usability... yes
checking sys/vfs.h presence... yes
checking for sys/vfs.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking varargs.h usability... no
checking varargs.h presence... no
checking for varargs.h... no
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking glib.h usability... no
checking glib.h presence... no
checking for glib.h... no
checking stdint.h usability... yes
checking stdint.h presence... yes
checking for stdint.h... yes
checking inttypes.h usability... yes
checking inttypes.h presence... yes
checking for inttypes.h... yes
checking db.h usability... yes
checking db.h presence... yes
checking for db.h... yes
checking db_185.h usability... yes
checking db_185.h presence... yes
checking for db_185.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for PAM conversation struct signature type... linux
checking for linux/netfilter_ipv4.h... yes
checking for net/if.h... yes
checking for netinet/if_ether.h... yes
checking for netinet/icmp6.h... yes
checking for netinet/in.h... (cached) yes
checking for netinet/ip.h... yes
checking for netinet/ip6.h... yes
checking for netinet/ip_compat.h... no
checking for netinet/ip_fil_compat.h... (cached) no
checking for netinet/ip_fil.h... no
checking for netinet/ip_icmp.h... yes
checking for netinet/ipl.h... no
checking for netinet/ip_nat.h... no
checking for net/pf/pfvar.h... no
checking for net/pfvar.h... no
checking for sys/mount.h... yes
checking for resolv.h... yes
checking for an ANSI C-conforming const... yes
checking whether byte ordering is bigendian... no
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_gmtoff... yes
checking for struct mallinfo... yes
checking for struct mallinfo.mxfast... no
checking for struct rusage... yes
checking for struct iphdr.ip_hl... yes
checking size of void *... 8
checking for int8_t... yes
checking for uint8_t... yes
checking for int16_t... yes
checking for uint16_t... yes
checking for int32_t... yes
checking for uint32_t... yes
checking for int64_t... yes
checking for uint64_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for ssize_t... yes
checking for off_t... yes
checking for uid_t in sys/types.h... yes
checking for bool... yes
checking size of int64_t... 8
checking size of long... 8
checking size of size_t... 8
checking size of off_t... 8
checking size of size_t... (cached) 8
checking whether nullptr is supported... yes
checking whether nullptr_t is supported... yes
checking whether std::unique_ptr<T> is supported... yes
checking for pad128_t... no
checking for upad128_t... no
checking for mode_t... yes
checking for fd_mask... yes
checking for socklen_t... yes
checking for mtyp_t... no
checking for compiler %zu support... yes
checking for working alloca.h... yes
checking for alloca... yes
checking sys/capability.h usability... yes
checking sys/capability.h presence... yes
checking for sys/capability.h... yes
checking for cap_clear_flag in -lcap... yes
checking for operational libcap2 headers... yes
configure: libcap support enabled: yes
configure: libcap2 headers are ok: yes
checking for library containing gethostbyname... none required
checking for library containing res_init... no
checking for library containing __res_search... -lresolv
checking for library containing bind... none required
checking for library containing opcom_stack_trace... no
checking for library containing strlcpy... no
checking for library containing yp_match... -lnsl
checking for unix domain sockets... yes
checking for malloc in -lgnumalloc... no
checking for main in -lmalloc... no
checking for library containing rint... -lm
checking for library containing log... none required
configure: forcing default of 65536 filedescriptors (user-forced)
checking Default FD_SETSIZE value... 1024
checking for setrlimit... yes
checking Maximum number of filedescriptors we can open... 32768
configure: Default number of fieldescriptors: 32768
checking whether to enable IPv6... yes
checking for sin6_len field in struct sockaddr_in6... no
checking for ss_len field in struct sockaddr_storage... no
checking for sin_len field in struct sockaddr_in... no
checking for crypt in -lcrypt... yes
checking for MD5Init in -lmd5... no
checking for crypt... yes
checking for ldap_init in -lldap... yes
checking for ber_init in -llber... yes
checking for ldap.h... (cached) yes
checking for lber.h... (cached) yes
checking mozldap/ldap.h usability... no
checking mozldap/ldap.h presence... no
checking for mozldap/ldap.h... no
checking for LDAP_OPT_DEBUG_LEVEL... yes
checking for working ldap... yes
checking for OpenLDAP... yes
checking for Sun LDAP SDK... no
checking for Mozilla LDAP SDK... no
checking for LDAP_REBINDPROC_CALLBACK... no
checking for LDAP_REBIND_PROC... yes
checking for LDAP_REBIND_FUNCTION... no
checking for LDAP_SCOPE_DEFAULT... yes
checking for struct ldap_url_desc.lud_scheme... yes
checking for ldapssl_client_init in -lldap... no
checking for ldap_url_desc2str in -lldap... yes
checking for ldap_url_parse in -lldap... yes
checking for ldap_start_tls_s in -lldap... yes
checking whether dbopen is declared... yes
checking if dbopen needs -ldb... yes
checking for backtrace_symbols_fd... yes
checking for bcopy... yes
checking for bswap_16... no
checking for bswap_32... no
checking for bswap16... no
checking for bswap32... no
checking for fchmod... yes
checking for getdtablesize... yes
checking for getpagesize... yes
checking for getpass... yes
checking for getrlimit... yes
checking for getrusage... yes
checking for getspnam... yes
checking for gettimeofday... yes
checking for glob... yes
checking for htobe16... no
checking for htole16... no
checking for lrand48... yes
checking for mallinfo... yes
checking for mallocblksize... no
checking for mallopt... yes
checking for memcpy... yes
checking for memmove... yes
checking for memset... yes
checking for mkstemp... yes
checking for mktime... yes
checking for mstats... no
checking for poll... yes
checking for prctl... yes
checking for pthread_attr_setschedparam... yes
checking for pthread_attr_setscope... yes
checking for pthread_setschedparam... yes
checking for pthread_sigmask... no
checking for putenv... yes
checking for random... yes
checking for regcomp... yes
checking for regexec... yes
checking for regfree... yes
checking for res_init... no
checking for __res_init... yes
checking for rint... yes
checking for sbrk... yes
checking for sched_getaffinity... yes
checking for sched_setaffinity... yes
checking for select... yes
checking for seteuid... yes
checking for setgroups... yes
checking for setpgrp... yes
checking for setsid... yes
checking for sigaction... yes
checking for snprintf... yes
checking for socketpair... yes
checking for srand48... yes
checking for srandom... yes
checking for statfs... yes
checking for sysconf... yes
checking for syslog... yes
checking for timegm... yes
checking for vsnprintf... yes
checking for drand48... yes
checking for eui64_aton... no
checking for inet_ntop... yes
checking for inet_pton... yes
checking for initgroups... yes
checking for getaddrinfo... yes
checking for getnameinfo... yes
checking for psignal... yes
checking for strerror... yes
checking for strsep... yes
checking for strtoll... yes
checking for tempnam... yes
configure: Using epoll for the IO loop.
checking if setresuid is actually implemented... yes
checking for constant CMSG_SPACE... yes
checking if strnstr is well implemented... no
checking if va_copy is implemented... yes
checking if __va_copy is implemented... yes
configure: IPF-based transparent proxying enabled: no
configure: Support for Netfilter-based interception proxy requested: yes
configure: Linux Netfilter Conntrack support enabled: yes
configure: ZPH QOS enabled: yes
configure: QOS netfilter mark preservation enabled: yes
checking for regexec in -lregex... no
checking if the system-supplied regex lib actually works... yes
checking if GNUregex needs to be compiled... no
checking Default UDP send buffer size... 212992
checking Default UDP receive buffer size... 212992
checking Default TCP send buffer size... 16384
checking Default TCP receive buffer size... 87380
configure: Limiting receive buffer size to 64K
checking if sys_errlist is already defined... yes
checking for system-provided MAXPATHLEN... yes
checking for working statvfs() interface... yes
configure: Multi-Language support enabled: yes
configure: BUILD LIBRARIES:
configure: BUILD EXTRA LIBRARIES: -lm -lnsl -lresolv -lcap -lnetfilter_conntrack -lrt -ldl -ldl
configure: BUILD OBJECTS:
configure: BUILD EXTRA OBJECTS:
configure: BUILD C FLAGS: -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall
configure: BUILD EXTRA C FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT
configure: BUILD C++ FLAGS: -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x
configure: BUILD EXTRA C++ FLAGS: -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating compat/Makefile
config.status: creating lib/Makefile
config.status: creating lib/ntlmauth/Makefile
config.status: creating lib/profiler/Makefile
config.status: creating lib/rfcnb/Makefile
config.status: creating lib/smblib/Makefile
config.status: creating scripts/Makefile
config.status: creating src/Makefile
config.status: creating src/anyp/Makefile
config.status: creating src/base/Makefile
config.status: creating src/acl/Makefile
config.status: creating src/fs/Makefile
config.status: creating src/repl/Makefile
config.status: creating src/auth/Makefile
config.status: creating src/auth/basic/Makefile
config.status: creating src/auth/digest/Makefile
config.status: creating src/auth/negotiate/Makefile
config.status: creating src/auth/ntlm/Makefile
config.status: creating src/adaptation/Makefile
config.status: creating src/adaptation/icap/Makefile
config.status: creating src/adaptation/ecap/Makefile
config.status: creating src/comm/Makefile
config.status: creating src/esi/Makefile
config.status: creating src/eui/Makefile
config.status: creating src/format/Makefile
config.status: creating src/icmp/Makefile
config.status: creating src/ident/Makefile
config.status: creating src/ip/Makefile
config.status: creating src/log/Makefile
config.status: creating src/ipc/Makefile
config.status: creating src/ssl/Makefile
config.status: creating src/mgr/Makefile
config.status: creating src/snmp/Makefile
config.status: creating contrib/Makefile
config.status: creating snmplib/Makefile
config.status: creating icons/Makefile
config.status: creating errors/Makefile
config.status: creating test-suite/Makefile
config.status: creating doc/Makefile
config.status: creating doc/manuals/Makefile
config.status: creating helpers/Makefile
config.status: creating helpers/basic_auth/Makefile
config.status: creating helpers/basic_auth/DB/Makefile
config.status: creating helpers/basic_auth/fake/Makefile
config.status: creating helpers/basic_auth/getpwnam/Makefile
config.status: creating helpers/basic_auth/LDAP/Makefile
config.status: creating helpers/basic_auth/MSNT/Makefile
config.status: creating helpers/basic_auth/MSNT-multi-domain/Makefile
config.status: creating helpers/basic_auth/NCSA/Makefile
config.status: creating helpers/basic_auth/NIS/Makefile
config.status: creating helpers/basic_auth/PAM/Makefile
config.status: creating helpers/basic_auth/POP3/Makefile
config.status: creating helpers/basic_auth/RADIUS/Makefile
config.status: creating helpers/basic_auth/SASL/Makefile
config.status: creating helpers/basic_auth/SMB/Makefile
config.status: creating helpers/basic_auth/SSPI/Makefile
config.status: creating helpers/digest_auth/Makefile
config.status: creating helpers/digest_auth/eDirectory/Makefile
config.status: creating helpers/digest_auth/file/Makefile
config.status: creating helpers/digest_auth/LDAP/Makefile
config.status: creating helpers/ntlm_auth/Makefile
config.status: creating helpers/ntlm_auth/fake/Makefile
config.status: creating helpers/ntlm_auth/smb_lm/Makefile
config.status: creating helpers/ntlm_auth/SSPI/Makefile
config.status: creating helpers/negotiate_auth/Makefile
config.status: creating helpers/negotiate_auth/kerberos/Makefile
config.status: creating helpers/negotiate_auth/SSPI/Makefile
config.status: creating helpers/negotiate_auth/wrapper/Makefile
config.status: creating helpers/external_acl/Makefile
config.status: creating helpers/external_acl/AD_group/Makefile
config.status: creating helpers/external_acl/eDirectory_userip/Makefile
config.status: creating helpers/external_acl/file_userip/Makefile
config.status: creating helpers/external_acl/kerberos_ldap_group/Makefile
config.status: creating helpers/external_acl/LDAP_group/Makefile
config.status: creating helpers/external_acl/LM_group/Makefile
config.status: creating helpers/external_acl/session/Makefile
config.status: creating helpers/external_acl/SQL_session/Makefile
config.status: creating helpers/external_acl/unix_group/Makefile
config.status: creating helpers/external_acl/wbinfo_group/Makefile
config.status: creating helpers/external_acl/time_quota/Makefile
config.status: creating helpers/log_daemon/Makefile
config.status: creating helpers/log_daemon/DB/Makefile
config.status: creating helpers/log_daemon/file/Makefile
config.status: creating helpers/url_rewrite/Makefile
config.status: creating helpers/url_rewrite/fake/Makefile
config.status: creating tools/Makefile
config.status: creating tools/purge/Makefile
config.status: creating include/autoconf.h
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in libltdl (/home/ubuntu/ex/squid3/libltdl)
configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' '--build=x86_64-linux-gnu' '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' '--sysconfdir=/etc' '--localstatedir=/var' '--libexecdir=${prefix}/lib/squid3' '--disable-maintainer-mode' '--disable-dependency-tracking' '--disable-silent-rules' '--datadir=/usr/share/squid3' '--sysconfdir=/etc/squid3' '--mandir=/usr/share/man' '--enable-inline' '--enable-async-io=8' '--enable-storeio=ufs,aufs,diskd,rock' '--enable-removal-policies=lru,heap' '--enable-delay-pools' '--enable-cache-digests' '--enable-underscores' '--enable-icap-client' '--enable-follow-x-forwarded-for' '--enable-auth-basic=DB,fake,getpwnam,LDAP,MSNT,MSNT-multi-domain,NCSA,NIS,PAM,POP3,RADIUS,SASL,SMB' '--enable-auth-digest=file,LDAP' '--enable-auth-negotiate=kerberos,wrapper' '--enable-auth-ntlm=fake,smb_lm' '--enable-external-acl-helpers=file_userip,kerberos_ldap_group,LDAP_group,session,SQL_session,unix_group,wbinfo_group' '--enable-url-rewrite-helpers=fake' '--enable-eui' '--enable-esi' '--enable-icmp' '--enable-zph-qos' '--enable-ecap' '--disable-translation' '--with-swapdir=/var/spool/squid3' '--with-logdir=/var/log/squid3' '--with-pidfile=/var/run/squid3.pid' '--with-filedescriptors=65536' '--with-large-files' '--with-default-user=proxy' '--enable-linux-netfilter' 'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall' 'LDFLAGS=-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' 'CXXFLAGS=-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security' --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking which extension is used for runtime loadable modules... .so
checking which variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... yes
checking for error_t... yes
checking for argz_add... yes
checking for argz_append... yes
checking for argz_count... yes
checking for argz_create_sep... yes
checking for argz_insert... yes
checking for argz_next... yes
checking for argz_stringify... yes
checking if argz actually works... yes
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for unistd.h... (cached) yes
checking for dl.h... no
checking for sys/dl.h... no
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... no
checking for strlcpy... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in lib/libTrie (/home/ubuntu/ex/squid3/lib/libTrie)
configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' '--build=x86_64-linux-gnu' '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' '--sysconfdir=/etc' '--localstatedir=/var' '--libexecdir=${prefix}/lib/squid3' '--disable-maintainer-mode' '--disable-dependency-tracking' '--disable-silent-rules' '--datadir=/usr/share/squid3' '--sysconfdir=/etc/squid3' '--mandir=/usr/share/man' '--enable-inline' '--enable-async-io=8' '--enable-storeio=ufs,aufs,diskd,rock' '--enable-removal-policies=lru,heap' '--enable-delay-pools' '--enable-cache-digests' '--enable-underscores' '--enable-icap-client' '--enable-follow-x-forwarded-for' '--enable-auth-basic=DB,fake,getpwnam,LDAP,MSNT,MSNT-multi-domain,NCSA,NIS,PAM,POP3,RADIUS,SASL,SMB' '--enable-auth-digest=file,LDAP' '--enable-auth-negotiate=kerberos,wrapper' '--enable-auth-ntlm=fake,smb_lm' '--enable-external-acl-helpers=file_userip,kerberos_ldap_group,LDAP_group,session,SQL_session,unix_group,wbinfo_group' '--enable-url-rewrite-helpers=fake' '--enable-eui' '--enable-esi' '--enable-icmp' '--enable-zph-qos' '--enable-ecap' '--disable-translation' '--with-swapdir=/var/spool/squid3' '--with-logdir=/var/log/squid3' '--with-pidfile=/var/run/squid3.pid' '--with-filedescriptors=65536' '--with-large-files' '--with-default-user=proxy' '--enable-linux-netfilter' 'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall' 'LDFLAGS=-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' 'CXXFLAGS=-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security' --cache-file=/dev/null --srcdir=.
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking for style of include used by make... GNU
checking whether make supports nested variables... yes
checking dependency style of gcc... none
checking dependency style of g++... none
checking whether to enable maintainer-specific portions of Makefiles... no
checking for ranlib... ranlib
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
configure: strict error checking enabled: yes
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating src/Makefile
config.status: creating test/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
touch debian/stamp-autotools
/usr/bin/make -C .
make[1]: Entering directory '/home/ubuntu/ex/squid3'
Making all in compat
make[2]: Entering directory '/home/ubuntu/ex/squid3/compat'
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o assert.o assert.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o compat.o compat.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o debug.o debug.cc
gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o GnuRegex.o GnuRegex.c
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o shm.o shm.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o strnstr.o strnstr.cc
gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o strnrchr.o strnrchr.c
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o xalloc.o xalloc.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o xstrerror.o xstrerror.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o xstring.o xstring.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o xstrto.o xstrto.cc
g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o mswin.o mswin.cc
gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o eui64_aton.o eui64_aton.c
rm -f libcompat-squid.a
/usr/bin/ar cru libcompat-squid.a assert.o compat.o debug.o GnuRegex.o shm.o strnstr.o strnrchr.o xalloc.o xstrerror.o xstring.o xstrto.o mswin.o eui64_aton.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
ranlib libcompat-squid.a
make[2]: Leaving directory '/home/ubuntu/ex/squid3/compat'
Making all in lib
make[2]: Entering directory '/home/ubuntu/ex/squid3/lib'
Making all in libTrie
make[3]: Entering directory '/home/ubuntu/ex/squid3/lib/libTrie'
/usr/bin/make all-recursive
make[4]: Entering directory '/home/ubuntu/ex/squid3/lib/libTrie'
Making all in src
make[5]: Entering directory '/home/ubuntu/ex/squid3/lib/libTrie/src'
g++ -DHAVE_CONFIG_H -I. -I.. -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -Werror -Wall -Wpointer-arith -Wwrite-strings -Wcomments -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -c -o Trie.o Trie.cc
g++ -DHAVE_CONFIG_H -I. -I.. -I../include -Wdate-time -D_FORTIFY_SOURCE=2 -Werror -Wall -Wpointer-arith -Wwrite-strings -Wcomments -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -c -o TrieNode.o TrieNode.cc
rm -f libTrie.a
ar cru libTrie.a Trie.o TrieNode.o
ar: `u' modifier ignored since `D' is the default (see `U')
ranlib libTrie.a
make[5]: Leaving directory '/home/ubuntu/ex/squid3/lib/libTrie/src'
Making all in test
make[5]: Entering directory '/home/ubuntu/ex/squid3/lib/libTrie/test'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/ubuntu/ex/squid3/lib/libTrie/test'
make[5]: Entering directory '/home/ubuntu/ex/squid3/lib/libTrie'
make[5]: Leaving directory '/home/ubuntu/ex/squid3/lib/libTrie'
make[4]: Leaving directory '/home/ubuntu/ex/squid3/lib/libTrie'
make[3]: Leaving directory '/home/ubuntu/ex/squid3/lib/libTrie'
Making all in rfcnb
make[3]: Entering directory '/home/ubuntu/ex/squid3/lib/rfcnb'
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfcnb-io.lo rfcnb-io.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfcnb-io.c -fPIC -DPIC -o .libs/rfcnb-io.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfcnb-io.c -fPIE -o rfcnb-io.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfcnb-util.lo rfcnb-util.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfcnb-util.c -fPIC -DPIC -o .libs/rfcnb-util.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfcnb-util.c -fPIE -o rfcnb-util.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o session.lo session.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c session.c -fPIC -DPIC -o .libs/session.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c session.c -fPIE -o session.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=link gcc -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -m64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -o librfcnb.la rfcnb-io.lo rfcnb-util.lo session.lo
libtool: link: /usr/bin/ar cru .libs/librfcnb.a .libs/rfcnb-io.o .libs/rfcnb-util.o .libs/session.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/librfcnb.a
libtool: link: ( cd ".libs" && rm -f "librfcnb.la" && ln -s "../librfcnb.la" "librfcnb.la" )
make[3]: Leaving directory '/home/ubuntu/ex/squid3/lib/rfcnb'
Making all in smblib
make[3]: Entering directory '/home/ubuntu/ex/squid3/lib/smblib'
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o md4.lo md4.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c md4.c -fPIC -DPIC -o .libs/md4.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c md4.c -fPIE -o md4.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o smblib.lo smblib.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smblib.c -fPIC -DPIC -o .libs/smblib.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smblib.c -fPIE -o smblib.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o smblib-util.lo smblib-util.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smblib-util.c -fPIC -DPIC -o .libs/smblib-util.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smblib-util.c -fPIE -o smblib-util.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o smbencrypt.lo smbencrypt.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smbencrypt.c -fPIC -DPIC -o .libs/smbencrypt.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smbencrypt.c -fPIE -o smbencrypt.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o smbdes.lo smbdes.c
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smbdes.c -fPIC -DPIC -o .libs/smbdes.o
libtool: compile: gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c smbdes.c -fPIE -o smbdes.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CC --mode=link gcc -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -m64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -o libsmblib.la md4.lo smblib.lo smblib-util.lo smbencrypt.lo smbdes.lo
libtool: link: /usr/bin/ar cru .libs/libsmblib.a .libs/md4.o .libs/smblib.o .libs/smblib-util.o .libs/smbencrypt.o .libs/smbdes.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libsmblib.a
libtool: link: ( cd ".libs" && rm -f "libsmblib.la" && ln -s "../libsmblib.la" "libsmblib.la" )
make[3]: Leaving directory '/home/ubuntu/ex/squid3/lib/smblib'
Making all in ntlmauth
make[3]: Entering directory '/home/ubuntu/ex/squid3/lib/ntlmauth'
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o ntlmauth.lo ntlmauth.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c ntlmauth.cc -fPIC -DPIC -o .libs/ntlmauth.o
libtool: compile: g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../lib -I../../src -I../../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I../../lib -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c ntlmauth.cc -fPIE -o ntlmauth.o >/dev/null 2>&1
/bin/bash ../../libtool --tag=CXX --mode=link g++ -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -m64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -o libntlmauth.la ntlmauth.lo
libtool: link: /usr/bin/ar cru .libs/libntlmauth.a .libs/ntlmauth.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libntlmauth.a
libtool: link: ( cd ".libs" && rm -f "libntlmauth.la" && ln -s "../libntlmauth.la" "libntlmauth.la" )
make[3]: Leaving directory '/home/ubuntu/ex/squid3/lib/ntlmauth'
make[3]: Entering directory '/home/ubuntu/ex/squid3/lib'
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o base64.lo base64.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c base64.c -fPIC -DPIC -o .libs/base64.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c base64.c -fPIE -o base64.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o charset.lo charset.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c charset.c -fPIC -DPIC -o .libs/charset.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c charset.c -fPIE -o charset.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o html_quote.lo html_quote.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c html_quote.c -fPIC -DPIC -o .libs/html_quote.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c html_quote.c -fPIE -o html_quote.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o md5.lo md5.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c md5.c -fPIC -DPIC -o .libs/md5.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c md5.c -fPIE -o md5.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfc1738.lo rfc1738.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc1738.c -fPIC -DPIC -o .libs/rfc1738.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc1738.c -fPIE -o rfc1738.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfc2617.lo rfc2617.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc2617.c -fPIC -DPIC -o .libs/rfc2617.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc2617.c -fPIE -o rfc2617.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o uudecode.lo uudecode.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c uudecode.c -fPIC -DPIC -o .libs/uudecode.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c uudecode.c -fPIE -o uudecode.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=link gcc -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -m64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -o libmiscencoding.la base64.lo charset.lo html_quote.lo md5.lo rfc1738.lo rfc2617.lo uudecode.lo
libtool: link: /usr/bin/ar cru .libs/libmiscencoding.a .libs/base64.o .libs/charset.o .libs/html_quote.o .libs/md5.o .libs/rfc1738.o .libs/rfc2617.o .libs/uudecode.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libmiscencoding.a
libtool: link: ( cd ".libs" && rm -f "libmiscencoding.la" && ln -s "../libmiscencoding.la" "libmiscencoding.la" )
/bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o hash.lo hash.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c hash.cc -fPIC -DPIC -o .libs/hash.o
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c hash.cc -fPIE -o hash.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CXX --mode=link g++ -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -m64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -o libmisccontainers.la hash.lo
libtool: link: /usr/bin/ar cru .libs/libmisccontainers.a .libs/hash.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libmisccontainers.a
libtool: link: ( cd ".libs" && rm -f "libmisccontainers.la" && ln -s "../libmisccontainers.la" "libmisccontainers.la" )
/bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o malloc_trace.lo malloc_trace.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c malloc_trace.cc -fPIC -DPIC -o .libs/malloc_trace.o
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c malloc_trace.cc -fPIE -o malloc_trace.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o MemPool.lo MemPool.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c MemPool.cc -fPIC -DPIC -o .libs/MemPool.o
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c MemPool.cc -fPIE -o MemPool.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o MemPoolChunked.lo MemPoolChunked.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c MemPoolChunked.cc -fPIC -DPIC -o .libs/MemPoolChunked.o
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c MemPoolChunked.cc -fPIE -o MemPoolChunked.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o MemPoolMalloc.lo MemPoolMalloc.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c MemPoolMalloc.cc -fPIC -DPIC -o .libs/MemPoolMalloc.o
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c MemPoolMalloc.cc -fPIE -o MemPoolMalloc.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o getfullhostname.lo getfullhostname.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c getfullhostname.c -fPIC -DPIC -o .libs/getfullhostname.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c getfullhostname.c -fPIE -o getfullhostname.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o heap.lo heap.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c heap.c -fPIC -DPIC -o .libs/heap.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c heap.c -fPIE -o heap.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o iso3307.lo iso3307.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c iso3307.c -fPIC -DPIC -o .libs/iso3307.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c iso3307.c -fPIE -o iso3307.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o radix.lo radix.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c radix.c -fPIC -DPIC -o .libs/radix.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c radix.c -fPIE -o radix.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfc1035.lo rfc1035.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc1035.c -fPIC -DPIC -o .libs/rfc1035.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc1035.c -fPIE -o rfc1035.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfc1123.lo rfc1123.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc1123.c -fPIC -DPIC -o .libs/rfc1123.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc1123.c -fPIE -o rfc1123.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfc2671.lo rfc2671.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc2671.c -fPIC -DPIC -o .libs/rfc2671.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc2671.c -fPIE -o rfc2671.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o rfc3596.lo rfc3596.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc3596.c -fPIC -DPIC -o .libs/rfc3596.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c rfc3596.c -fPIE -o rfc3596.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c -o Splay.lo Splay.cc
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c Splay.cc -fPIC -DPIC -o .libs/Splay.o
libtool: compile: g++ -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -c Splay.cc -fPIE -o Splay.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o stub_memaccount.lo stub_memaccount.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c stub_memaccount.c -fPIC -DPIC -o .libs/stub_memaccount.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c stub_memaccount.c -fPIE -o stub_memaccount.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o util.lo util.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c util.c -fPIC -DPIC -o .libs/util.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c util.c -fPIE -o util.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o xusleep.lo xusleep.c
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c xusleep.c -fPIC -DPIC -o .libs/xusleep.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I../include -I../lib -I../src -I../include -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -c xusleep.c -fPIE -o xusleep.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CXX --mode=link g++ -I/usr/include/libxml2 -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -std=c++0x -m64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -o libmiscutil.la malloc_trace.lo MemPool.lo MemPoolChunked.lo MemPoolMalloc.lo getfullhostname.lo heap.lo iso3307.lo radix.lo rfc1035.lo rfc1123.lo rfc2671.lo rfc3596.lo Splay.lo stub_memaccount.lo util.lo xusleep.lo
libtool: link: /usr/bin/ar cru .libs/libmiscutil.a .libs/malloc_trace.o .libs/MemPool.o .libs/MemPoolChunked.o .libs/MemPoolMalloc.o .libs/getfullhostname.o .libs/heap.o .libs/iso3307.o .libs/radix.o .libs/rfc1035.o .libs/rfc1123.o .libs/rfc2671.o .libs/rfc3596.o .libs/Splay.o .libs/stub_memaccount.o .libs/util.o .libs/xusleep.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libmiscutil.a
libtool: link: ( cd ".libs" && rm -f "libmiscutil.la" && ln -s "../libmiscutil.la" "libmiscutil.la" )
make[3]: Leaving directory '/home/ubuntu/ex/squid3/lib'
make[2]: Leaving directory '/home/ubuntu/ex/squid3/lib'
Making all in snmplib
make[2]: Entering directory '/home/ubuntu/ex/squid3/snmplib'
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o asn1.o asn1.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o parse.o parse.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmp_vars.o snmp_vars.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o coexistance.o coexistance.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmp_api.o snmp_api.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmp_error.o snmp_error.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o mib.o mib.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmp_api_error.o snmp_api_error.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmp_msg.o snmp_msg.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmp_pdu.o snmp_pdu.c
gcc -DSQUID_SNMP=1 -I.. -I../include -I../include -I/usr/include/libxml2 -Wdate-time -D_FORTIFY_SOURCE=2 -isystem /usr/include/mit-krb5 -isystem /usr/include/mit-krb5 -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe -D_REENTRANT -m64 -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -c -o snmplib_debug.o snmplib_debug.c
rm -f libsnmplib.a
/usr/bin/ar cru libsnmplib.a asn1.o parse.o snmp_vars.o coexistance.o snmp_api.o snmp_error.o mib.o snmp_api_error.o snmp_msg.o snmp_pdu.o snmplib_debug.o
/usr/bin/ar: `u' modifier ignored since `D' is the default (see `U')
ranlib libsnmplib.a
make[2]: Leaving directory '/home/ubuntu/ex/squid3/snmplib'
Making all in libltdl
make[2]: Entering directory '/home/ubuntu/ex/squid3/libltdl'
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /home/ubuntu/ex/squid3/libltdl/config/missing aclocal-1.14 -I m4
/home/ubuntu/ex/squid3/libltdl/config/missing: line 81: aclocal-1.14: command not found
WARNING: 'aclocal-1.14' is missing on your system.
You should only need it if you modified 'acinclude.m4' or
'configure.ac' or m4 files included by 'configure.ac'.
The 'aclocal' program is part of the GNU Automake package:
<http://www.gnu.org/software/automake>
It also requires GNU Autoconf, GNU m4 and Perl in order to run:
<http://www.gnu.org/software/autoconf>
<http://www.gnu.org/software/m4/>
<http://www.perl.org/>
Makefile:523: recipe for target 'aclocal.m4' failed
make[2]: *** [aclocal.m4] Error 127
make[2]: Leaving directory '/home/ubuntu/ex/squid3/libltdl'
Makefile:511: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/ubuntu/ex/squid3'
/usr/share/cdbs/1/class/makefile.mk:47: recipe for target 'debian/stamp-makefile-build' failed
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
debuild: fatal error at line 1374:
dpkg-buildpackage -rfakeroot -D -us -uc -nc failed
|