-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibxml2_2.9.8-1_amd64.build
More file actions
2504 lines (2499 loc) · 279 KB
/
libxml2_2.9.8-1_amd64.build
File metadata and controls
2504 lines (2499 loc) · 279 KB
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
dpkg-buildpackage -D -us -uc -ui -b -Jauto -Pnobiarch,nocheck,nodoc
dpkg-buildpackage: info: source package libxml2
dpkg-buildpackage: info: source version 2.9.8-1
dpkg-buildpackage: info: source distribution UNRELEASED
dpkg-buildpackage: info: source changed by Richard Yang <richard@yenforyang.com>
dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
debian/rules clean
dh clean \
--with python2 \
--with python3
rm -f debian/libxml2-dbg.debhelper.log debian/libxml2-dev.debhelper.log debian/libxml2-utils.debhelper.log debian/libxml2.debhelper.log debian/python-libxml2-dbg.debhelper.log debian/python-libxml2.debhelper.log debian/python3-libxml2-dbg.debhelper.log debian/python3-libxml2.debhelper.log
debian/rules override_dh_auto_clean
make[1]: Entering directory '/dev/shm/libxml2/libxml2-2.9.8'
rm -rf builddir debian/tmp-dbg
rm -f doconfigure-*
dh_auto_clean
make[1]: Leaving directory '/dev/shm/libxml2/libxml2-2.9.8'
dh_autoreconf_clean
rm -f -- ./depcomp ./Makefile.in ./INSTALL ./missing ./install-sh ./compile ./config.h.in\~ ./configure ./aclocal.m4 ./ltmain.sh ./autom4te.cache/output.1 ./autom4te.cache/traces.1 ./autom4te.cache/output.2 ./autom4te.cache/traces.2 ./autom4te.cache/output.0 ./autom4te.cache/traces.0 ./autom4te.cache/requests ./xstc/Makefile.in ./python/Makefile.in ./python/tests/Makefile.in ./doc/Makefile.in ./doc/examples/Makefile.in ./doc/devhelp/Makefile.in ./include/Makefile.in ./include/libxml/Makefile.in ./m4/libtool.m4 ./example/Makefile.in
rm -f debian/autoreconf.before debian/autoreconf.after
dh_clean
rm -f debian/debhelper-build-stamp
cp -an --reflink=auto debian/.debhelper/bucket/files/a46e762f3973827ff2840965f1614da4d9a4d2f17217b1516d2780e520de7835 debian/.debhelper/bucket/files/a46e762f3973827ff2840965f1614da4d9a4d2f17217b1516d2780e520de7835.tmp
mv debian/.debhelper/bucket/files/a46e762f3973827ff2840965f1614da4d9a4d2f17217b1516d2780e520de7835.tmp config.guess
cp -an --reflink=auto debian/.debhelper/bucket/files/ce09ee5b12a4b11f612a71092766fa24a73d06b6125befa7143de303b08ab3ad debian/.debhelper/bucket/files/ce09ee5b12a4b11f612a71092766fa24a73d06b6125befa7143de303b08ab3ad.tmp
mv debian/.debhelper/bucket/files/ce09ee5b12a4b11f612a71092766fa24a73d06b6125befa7143de303b08ab3ad.tmp config.sub
rm -rf debian/.debhelper/
rm -f -- debian/libxml2.substvars debian/libxml2-utils.substvars debian/libxml2-dev.substvars debian/libxml2-dbg.substvars debian/libxml2-doc.substvars debian/python-libxml2.substvars debian/python-libxml2.postinst.debhelper debian/python-libxml2.prerm.debhelper debian/python-libxml2-dbg.substvars debian/python3-libxml2.substvars debian/python3-libxml2.postinst.debhelper debian/python3-libxml2.prerm.debhelper debian/python3-libxml2-dbg.substvars debian/files
rm -fr -- debian/libxml2/ debian/tmp/ debian/libxml2-utils/ debian/libxml2-dev/ debian/libxml2-dbg/ debian/libxml2-doc/ debian/python-libxml2/ debian/python-libxml2-dbg/ debian/python3-libxml2/ debian/python3-libxml2-dbg/
find . \( \( \
\( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \
\( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \
-o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \
-o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \
-o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \
\) -exec rm -f {} + \) -o \
\( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \)
debian/rules binary
dh binary \
--with python2 \
--with python3
dh_update_autotools_config
install -d debian/.debhelper/bucket/files
cp -an --reflink=auto config.guess debian/.debhelper/bucket/files/a46e762f3973827ff2840965f1614da4d9a4d2f17217b1516d2780e520de7835.tmp
mv debian/.debhelper/bucket/files/a46e762f3973827ff2840965f1614da4d9a4d2f17217b1516d2780e520de7835.tmp debian/.debhelper/bucket/files/a46e762f3973827ff2840965f1614da4d9a4d2f17217b1516d2780e520de7835
cp -f /usr/share/misc/config.guess ./config.guess
cp -an --reflink=auto config.sub debian/.debhelper/bucket/files/ce09ee5b12a4b11f612a71092766fa24a73d06b6125befa7143de303b08ab3ad.tmp
mv debian/.debhelper/bucket/files/ce09ee5b12a4b11f612a71092766fa24a73d06b6125befa7143de303b08ab3ad.tmp debian/.debhelper/bucket/files/ce09ee5b12a4b11f612a71092766fa24a73d06b6125befa7143de303b08ab3ad
cp -f /usr/share/misc/config.sub ./config.sub
dh_autoreconf
find ! -ipath "./debian/*" -a ! \( -path '*/.git/*' -o -path '*/.hg/*' -o -path '*/.bzr/*' -o -path '*/.svn/*' -o -path '*/CVS/*' \) -a -type f -exec md5sum {} + -o -type l -printf "symlink %p
" > debian/autoreconf.before
grep -q ^XDT_ configure.ac
autoreconf -f -i
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
configure.ac:53: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:53: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
configure.ac:61: installing './compile'
configure.ac:53: installing './install-sh'
configure.ac:53: installing './missing'
Makefile.am: installing './INSTALL'
Makefile.am: installing './depcomp'
doc/Makefile.am:21: warning: wildcard tutorial/*.html: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard tutorial/*.c: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard tutorial/*.pdf: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard tutorial/images/*.png: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard tutorial/images/callouts/*.png: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard API*.html: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard *.1: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard *.xsl: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard *.html: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard *.gif: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard html/*.html: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:21: warning: wildcard html/*.png: non-POSIX variable name
doc/Makefile.am:21: (probably a GNU make extension)
doc/Makefile.am:301: warning: filter-out %/xmlversion.h, $(wildcard $(top_srcdir: non-POSIX variable name
doc/Makefile.am:301: (probably a GNU make extension)
doc/Makefile.am:301: warning: wildcard $(top_srcdir: non-POSIX variable name
doc/Makefile.am:301: (probably a GNU make extension)
find ! -ipath "./debian/*" -a ! \( -path '*/.git/*' -o -path '*/.hg/*' -o -path '*/.bzr/*' -o -path '*/.svn/*' -o -path '*/CVS/*' \) -a -type f -exec md5sum {} + -o -type l -printf "symlink %p
" > debian/autoreconf.after
debian/rules override_dh_auto_configure
make[1]: Entering directory '/dev/shm/libxml2/libxml2-2.9.8'
dh_auto_configure --parallel --builddirectory=builddir/main -- --disable-silent-rules --with-history --cache-file="/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache" --without-python --with-icu
install -d builddir/main
cd builddir/main && ../../configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --runstatedir=/run --disable-maintainer-mode --disable-dependency-tracking --disable-silent-rules --with-history --cache-file=/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache --without-python --with-icu
configure: loading site script /usr/share/config.site
configure: creating cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... (cached) x86_64-pc-linux-gnu
checking host system type... (cached) x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking whether make supports nested variables... (cached) yes
checking whether make supports nested variables... (cached) yes
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... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether icc accepts -g... (cached) yes
checking for icc option to accept ISO C89... none needed
checking whether icc understands -c and -o together... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of icc... (cached) gcc3
checking whether ln -s works... yes
checking how to run the C preprocessor... icc -E
checking for mv... (cached) /bin/mv
checking for tar... (cached) /bin/tar
checking for perl... (cached) /usr/bin/perl
checking for wget... (cached) /usr/bin/wget
checking for xmllint... (cached) /usr/bin/xmllint
checking for xsltproc... (cached) /usr/bin/xsltproc
checking pkg-config is at least version 0.9.0... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/grep -E
checking for fgrep... (cached) /bin/grep -F
checking for ld used by icc... (cached) xild -m elf_x86_64
checking if the linker (xild -m elf_x86_64) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/x86_64-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-linux-gnu-nm -B) interface... (cached) BSD nm
checking the maximum length of command line arguments... (cached) 1572864
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 xild -m elf_x86_64 option to reload object files... (cached) -r
checking how to recognize dependent libraries... pass_all
checking for dlltool... (cached) dlltool
checking how to associate runtime and link libraries... (cached) printf %s\n
checking for archiver @FILE support... (cached) @
checking for strip... (cached) x86_64-linux-gnu-strip
checking for ranlib... (cached) /usr/bin/x86_64-linux-gnu-ranlib
checking command to parse /usr/bin/x86_64-linux-gnu-nm -B output from icc object... ok
checking for sysroot... no
checking for a working dd... (cached) /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... (cached) mt
checking if mt is a manifest tool... no
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking if icc supports -fno-rtti -fno-exceptions... (cached) yes
checking for icc option to produce PIC... (cached) -fpic
checking if icc PIC flag -fpic works... (cached) yes
checking if icc static flag -static works... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking whether the icc linker (xild -m elf_x86_64 -m elf_x86_64) supports shared libraries... xild: warning #10013: no objects specified for multi-file optimization
xild: executing 'ld'
yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
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 zlib
checking for Z... yes
Checking lzma
checking for LZMA... yes
Checking headers
checking for dirent.h that defines DIR... (cached) yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for ctype.h... (cached) yes
checking for dirent.h... (cached) yes
checking for errno.h... (cached) yes
checking for malloc.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for time.h... (cached) yes
checking for math.h... (cached) yes
checking for limits.h... (cached) yes
checking for float.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for netdb.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... (cached) yes
checking for poll.h... (cached) yes
checking for sys/mman.h... (cached) yes
checking for sys/timeb.h... (cached) yes
checking for signal.h... (cached) yes
checking for arpa/nameser.h... (cached) yes
checking for resolv.h... (cached) yes
checking dl.h usability... no
checking dl.h presence... no
checking for dl.h... no
checking for dlfcn.h... (cached) yes
Checking types
checking for uint32_t... yes
Checking libraries
checking for strftime... (cached) yes
checking for strftime... (cached) yes
checking for localtime... (cached) yes
checking for gettimeofday... (cached) yes
checking for ftime... (cached) yes
checking for stat... (cached) yes
checking for signal... (cached) yes
checking for rand... (cached) yes
checking for rand_r... (cached) yes
checking for srand... (cached) yes
checking for time... (cached) yes
checking for isascii... (cached) yes
checking for mmap... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for va_copy... yes
checking whether va_list is an array type... yes
checking for library containing gethostent... none required
checking for library containing setsockopt... none required
checking for library containing connect... none required
checking for type of socket length (socklen_t)... socklen_t *
checking for const gethostbyname() argument... yes
checking for const send() second argument... yes
checking whether to enable IPv6... yes
checking struct sockaddr::ss_family... yes
checking for getaddrinfo... (cached) yes
checking for isnan... (cached) yes
checking for isinf... (cached) yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... (cached) yes
Checking configuration requirements
Enabling multithreaded support
checking for pthread.h... (cached) yes
checking for pthread_join in -lpthread... (cached) yes
Enabling xmllint shell history
checking for tputs in -lncurses... (cached) yes
checking for readline/history.h... (cached) yes
checking for append_history in -lhistory... (cached) yes
checking for readline/readline.h... (cached) yes
checking for readline in -lreadline... (cached) yes
Enabled Schematron support
checking for iconv.h... (cached) yes
checking for iconv... yes
checking for iconv declaration...
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for ICU... yes
Enabled Schemas/Relax-NG support
checking for printf... (cached) yes
checking for sprintf... (cached) yes
checking for fprintf... (cached) yes
checking for snprintf... (cached) yes
checking for vfprintf... (cached) yes
checking for vsprintf... (cached) yes
checking for vsnprintf... (cached) yes
checking for sscanf... (cached) yes
Disabling code coverage for GCC
configure: updating cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libxml2.spec
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/libxml/Makefile
config.status: creating doc/Makefile
config.status: creating doc/examples/Makefile
config.status: creating doc/devhelp/Makefile
config.status: creating example/Makefile
config.status: creating python/Makefile
config.status: creating python/tests/Makefile
config.status: creating xstc/Makefile
config.status: creating include/libxml/xmlversion.h
config.status: creating libxml-2.0.pc
config.status: creating libxml-2.0-uninstalled.pc
config.status: creating libxml2-config.cmake
config.status: creating python/setup.py
config.status: creating xml2-config
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
Done configuring
touch doconfigure-main
dh_auto_configure --parallel --builddirectory=builddir/python2.7 -- --disable-silent-rules --with-history --cache-file="/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache" --with-python=/usr/bin/python2.7 --with-python-install-dir=/usr/lib/python2.7/dist-packages
install -d builddir/python2.7
cd builddir/python2.7 && ../../configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --runstatedir=/run --disable-maintainer-mode --disable-dependency-tracking --disable-silent-rules --with-history --cache-file=/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache --with-python=/usr/bin/python2.7 --with-python-install-dir=/usr/lib/python2.7/dist-packages
configure: loading site script /usr/share/config.site
configure: loading cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... (cached) x86_64-pc-linux-gnu
checking host system type... (cached) x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking whether make supports nested variables... (cached) yes
checking whether make supports nested variables... (cached) yes
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... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether icc accepts -g... (cached) yes
checking for icc option to accept ISO C89... (cached) none needed
checking whether icc understands -c and -o together... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of icc... (cached) gcc3
checking whether ln -s works... yes
checking how to run the C preprocessor... icc -E
checking for mv... (cached) /bin/mv
checking for tar... (cached) /bin/tar
checking for perl... (cached) /usr/bin/perl
checking for wget... (cached) /usr/bin/wget
checking for xmllint... (cached) /usr/bin/xmllint
checking for xsltproc... (cached) /usr/bin/xsltproc
checking pkg-config is at least version 0.9.0... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/grep -E
checking for fgrep... (cached) /bin/grep -F
checking for ld used by icc... (cached) xild -m elf_x86_64
checking if the linker (xild -m elf_x86_64) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/x86_64-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-linux-gnu-nm -B) interface... (cached) BSD nm
checking the maximum length of command line arguments... (cached) 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... (cached) func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... (cached) func_convert_file_noop
checking for xild -m elf_x86_64 option to reload object files... (cached) -r
checking how to recognize dependent libraries... (cached) pass_all
checking for dlltool... (cached) dlltool
checking how to associate runtime and link libraries... (cached) printf %s\n
checking for archiver @FILE support... (cached) @
checking for strip... (cached) x86_64-linux-gnu-strip
checking for ranlib... (cached) /usr/bin/x86_64-linux-gnu-ranlib
checking command to parse /usr/bin/x86_64-linux-gnu-nm -B output from icc object... (cached) ok
checking for sysroot... no
checking for a working dd... (cached) /bin/dd
checking how to truncate binary pipes... (cached) /bin/dd bs=4096 count=1
checking for mt... (cached) mt
checking if mt is a manifest tool... (cached) no
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking if icc supports -fno-rtti -fno-exceptions... (cached) yes
checking for icc option to produce PIC... (cached) -fpic
checking if icc PIC flag -fpic works... (cached) yes
checking if icc static flag -static works... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking whether the icc linker (xild -m elf_x86_64 -m elf_x86_64) supports shared libraries... xild: warning #10013: no objects specified for multi-file optimization
xild: executing 'ld'
yes
checking whether -lc should be explicitly linked in... (cached) no
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
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 zlib
checking for Z... yes
Checking lzma
checking for LZMA... yes
Checking headers
checking for dirent.h that defines DIR... (cached) yes
checking for library containing opendir... (cached) none required
checking for ANSI C header files... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for ctype.h... (cached) yes
checking for dirent.h... (cached) yes
checking for errno.h... (cached) yes
checking for malloc.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for time.h... (cached) yes
checking for math.h... (cached) yes
checking for limits.h... (cached) yes
checking for float.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for netdb.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... (cached) yes
checking for poll.h... (cached) yes
checking for sys/mman.h... (cached) yes
checking for sys/timeb.h... (cached) yes
checking for signal.h... (cached) yes
checking for arpa/nameser.h... (cached) yes
checking for resolv.h... (cached) yes
checking for dl.h... (cached) no
checking for dlfcn.h... (cached) yes
Checking types
checking for uint32_t... (cached) yes
Checking libraries
checking for strftime... (cached) yes
checking for strftime... (cached) yes
checking for localtime... (cached) yes
checking for gettimeofday... (cached) yes
checking for ftime... (cached) yes
checking for stat... (cached) yes
checking for signal... (cached) yes
checking for rand... (cached) yes
checking for rand_r... (cached) yes
checking for srand... (cached) yes
checking for time... (cached) yes
checking for isascii... (cached) yes
checking for mmap... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for va_copy... yes
checking whether va_list is an array type... yes
checking for library containing gethostent... (cached) none required
checking for library containing setsockopt... (cached) none required
checking for library containing connect... (cached) none required
checking for type of socket length (socklen_t)... socklen_t *
checking for const gethostbyname() argument... yes
checking for const send() second argument... yes
checking whether to enable IPv6... yes
checking struct sockaddr::ss_family... yes
checking for getaddrinfo... (cached) yes
checking for isnan... (cached) yes
checking for isinf... (cached) yes
Found python in /usr/bin/python2.7
Found Python version 2.7
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dlopen... (cached) yes
Checking configuration requirements
Enabling multithreaded support
checking for pthread.h... (cached) yes
checking for pthread_join in -lpthread... (cached) yes
Enabling xmllint shell history
checking for tputs in -lncurses... (cached) yes
checking for readline/history.h... (cached) yes
checking for append_history in -lhistory... (cached) yes
checking for readline/readline.h... (cached) yes
checking for readline in -lreadline... (cached) yes
Enabled Schematron support
checking for iconv.h... (cached) yes
checking for iconv... yes
checking for iconv declaration... (cached)
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
Disabling ICU support
Enabled Schemas/Relax-NG support
checking for printf... (cached) yes
checking for sprintf... (cached) yes
checking for fprintf... (cached) yes
checking for snprintf... (cached) yes
checking for vfprintf... (cached) yes
checking for vsprintf... (cached) yes
checking for vsnprintf... (cached) yes
checking for sscanf... (cached) yes
Disabling code coverage for GCC
configure: updating cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libxml2.spec
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/libxml/Makefile
config.status: creating doc/Makefile
config.status: creating doc/examples/Makefile
config.status: creating doc/devhelp/Makefile
config.status: creating example/Makefile
config.status: creating python/Makefile
config.status: creating python/tests/Makefile
config.status: creating xstc/Makefile
config.status: creating include/libxml/xmlversion.h
config.status: creating libxml-2.0.pc
config.status: creating libxml-2.0-uninstalled.pc
config.status: creating libxml2-config.cmake
config.status: creating python/setup.py
config.status: creating xml2-config
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
Done configuring
touch doconfigure-python2.7
dh_auto_configure --parallel --builddirectory=builddir/python2.7-dbg -- --disable-silent-rules --with-history --cache-file="/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache" --with-python=/usr/bin/python2.7 --with-python-install-dir=/usr/lib/python2.7/dist-packages
install -d builddir/python2.7-dbg
cd builddir/python2.7-dbg && ../../configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --runstatedir=/run --disable-maintainer-mode --disable-dependency-tracking --disable-silent-rules --with-history --cache-file=/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache --with-python=/usr/bin/python2.7 --with-python-install-dir=/usr/lib/python2.7/dist-packages
configure: loading site script /usr/share/config.site
configure: loading cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... (cached) x86_64-pc-linux-gnu
checking host system type... (cached) x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking whether make supports nested variables... (cached) yes
checking whether make supports nested variables... (cached) yes
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... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether icc accepts -g... (cached) yes
checking for icc option to accept ISO C89... (cached) none needed
checking whether icc understands -c and -o together... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of icc... (cached) gcc3
checking whether ln -s works... yes
checking how to run the C preprocessor... icc -E
checking for mv... (cached) /bin/mv
checking for tar... (cached) /bin/tar
checking for perl... (cached) /usr/bin/perl
checking for wget... (cached) /usr/bin/wget
checking for xmllint... (cached) /usr/bin/xmllint
checking for xsltproc... (cached) /usr/bin/xsltproc
checking pkg-config is at least version 0.9.0... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/grep -E
checking for fgrep... (cached) /bin/grep -F
checking for ld used by icc... (cached) xild -m elf_x86_64
checking if the linker (xild -m elf_x86_64) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/x86_64-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-linux-gnu-nm -B) interface... (cached) BSD nm
checking the maximum length of command line arguments... (cached) 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... (cached) func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... (cached) func_convert_file_noop
checking for xild -m elf_x86_64 option to reload object files... (cached) -r
checking how to recognize dependent libraries... (cached) pass_all
checking for dlltool... (cached) dlltool
checking how to associate runtime and link libraries... (cached) printf %s\n
checking for archiver @FILE support... (cached) @
checking for strip... (cached) x86_64-linux-gnu-strip
checking for ranlib... (cached) /usr/bin/x86_64-linux-gnu-ranlib
checking command to parse /usr/bin/x86_64-linux-gnu-nm -B output from icc object... (cached) ok
checking for sysroot... no
checking for a working dd... (cached) /bin/dd
checking how to truncate binary pipes... (cached) /bin/dd bs=4096 count=1
checking for mt... (cached) mt
checking if mt is a manifest tool... (cached) no
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking if icc supports -fno-rtti -fno-exceptions... (cached) yes
checking for icc option to produce PIC... (cached) -fpic
checking if icc PIC flag -fpic works... (cached) yes
checking if icc static flag -static works... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking whether the icc linker (xild -m elf_x86_64 -m elf_x86_64) supports shared libraries... xild: warning #10013: no objects specified for multi-file optimization
xild: executing 'ld'
yes
checking whether -lc should be explicitly linked in... (cached) no
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
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 zlib
checking for Z... yes
Checking lzma
checking for LZMA... yes
Checking headers
checking for dirent.h that defines DIR... (cached) yes
checking for library containing opendir... (cached) none required
checking for ANSI C header files... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for ctype.h... (cached) yes
checking for dirent.h... (cached) yes
checking for errno.h... (cached) yes
checking for malloc.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for time.h... (cached) yes
checking for math.h... (cached) yes
checking for limits.h... (cached) yes
checking for float.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for netdb.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... (cached) yes
checking for poll.h... (cached) yes
checking for sys/mman.h... (cached) yes
checking for sys/timeb.h... (cached) yes
checking for signal.h... (cached) yes
checking for arpa/nameser.h... (cached) yes
checking for resolv.h... (cached) yes
checking for dl.h... (cached) no
checking for dlfcn.h... (cached) yes
Checking types
checking for uint32_t... (cached) yes
Checking libraries
checking for strftime... (cached) yes
checking for strftime... (cached) yes
checking for localtime... (cached) yes
checking for gettimeofday... (cached) yes
checking for ftime... (cached) yes
checking for stat... (cached) yes
checking for signal... (cached) yes
checking for rand... (cached) yes
checking for rand_r... (cached) yes
checking for srand... (cached) yes
checking for time... (cached) yes
checking for isascii... (cached) yes
checking for mmap... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for va_copy... yes
checking whether va_list is an array type... yes
checking for library containing gethostent... (cached) none required
checking for library containing setsockopt... (cached) none required
checking for library containing connect... (cached) none required
checking for type of socket length (socklen_t)... socklen_t *
checking for const gethostbyname() argument... yes
checking for const send() second argument... yes
checking whether to enable IPv6... yes
checking struct sockaddr::ss_family... yes
checking for getaddrinfo... (cached) yes
checking for isnan... (cached) yes
checking for isinf... (cached) yes
Found python in /usr/bin/python2.7
Found Python version 2.7
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dlopen... (cached) yes
Checking configuration requirements
Enabling multithreaded support
checking for pthread.h... (cached) yes
checking for pthread_join in -lpthread... (cached) yes
Enabling xmllint shell history
checking for tputs in -lncurses... (cached) yes
checking for readline/history.h... (cached) yes
checking for append_history in -lhistory... (cached) yes
checking for readline/readline.h... (cached) yes
checking for readline in -lreadline... (cached) yes
Enabled Schematron support
checking for iconv.h... (cached) yes
checking for iconv... yes
checking for iconv declaration... (cached)
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
Disabling ICU support
Enabled Schemas/Relax-NG support
checking for printf... (cached) yes
checking for sprintf... (cached) yes
checking for fprintf... (cached) yes
checking for snprintf... (cached) yes
checking for vfprintf... (cached) yes
checking for vsprintf... (cached) yes
checking for vsnprintf... (cached) yes
checking for sscanf... (cached) yes
Disabling code coverage for GCC
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libxml2.spec
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/libxml/Makefile
config.status: creating doc/Makefile
config.status: creating doc/examples/Makefile
config.status: creating doc/devhelp/Makefile
config.status: creating example/Makefile
config.status: creating python/Makefile
config.status: creating python/tests/Makefile
config.status: creating xstc/Makefile
config.status: creating include/libxml/xmlversion.h
config.status: creating libxml-2.0.pc
config.status: creating libxml-2.0-uninstalled.pc
config.status: creating libxml2-config.cmake
config.status: creating python/setup.py
config.status: creating xml2-config
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
Done configuring
touch doconfigure-python2.7-dbg
dh_auto_configure --parallel --builddirectory=builddir/python3.7 -- --disable-silent-rules --with-history --cache-file="/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache" --with-python=/usr/bin/python3.7 --with-python-install-dir=/usr/lib/python3.7/dist-packages
install -d builddir/python3.7
cd builddir/python3.7 && ../../configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --runstatedir=/run --disable-maintainer-mode --disable-dependency-tracking --disable-silent-rules --with-history --cache-file=/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache --with-python=/usr/bin/python3.7 --with-python-install-dir=/usr/lib/python3.7/dist-packages
configure: loading site script /usr/share/config.site
configure: loading cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... (cached) x86_64-pc-linux-gnu
checking host system type... (cached) x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking whether make supports nested variables... (cached) yes
checking whether make supports nested variables... (cached) yes
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... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether icc accepts -g... (cached) yes
checking for icc option to accept ISO C89... (cached) none needed
checking whether icc understands -c and -o together... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of icc... (cached) gcc3
checking whether ln -s works... yes
checking how to run the C preprocessor... icc -E
checking for mv... (cached) /bin/mv
checking for tar... (cached) /bin/tar
checking for perl... (cached) /usr/bin/perl
checking for wget... (cached) /usr/bin/wget
checking for xmllint... (cached) /usr/bin/xmllint
checking for xsltproc... (cached) /usr/bin/xsltproc
checking pkg-config is at least version 0.9.0... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/grep -E
checking for fgrep... (cached) /bin/grep -F
checking for ld used by icc... (cached) xild -m elf_x86_64
checking if the linker (xild -m elf_x86_64) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/x86_64-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-linux-gnu-nm -B) interface... (cached) BSD nm
checking the maximum length of command line arguments... (cached) 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... (cached) func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... (cached) func_convert_file_noop
checking for xild -m elf_x86_64 option to reload object files... (cached) -r
checking how to recognize dependent libraries... (cached) pass_all
checking for dlltool... (cached) dlltool
checking how to associate runtime and link libraries... (cached) printf %s\n
checking for archiver @FILE support... (cached) @
checking for strip... (cached) x86_64-linux-gnu-strip
checking for ranlib... (cached) /usr/bin/x86_64-linux-gnu-ranlib
checking command to parse /usr/bin/x86_64-linux-gnu-nm -B output from icc object... (cached) ok
checking for sysroot... no
checking for a working dd... (cached) /bin/dd
checking how to truncate binary pipes... (cached) /bin/dd bs=4096 count=1
checking for mt... (cached) mt
checking if mt is a manifest tool... (cached) no
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking if icc supports -fno-rtti -fno-exceptions... (cached) yes
checking for icc option to produce PIC... (cached) -fpic
checking if icc PIC flag -fpic works... (cached) yes
checking if icc static flag -static works... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking if icc supports -c -o file.o... (cached) yes
checking whether the icc linker (xild -m elf_x86_64 -m elf_x86_64) supports shared libraries... xild: warning #10013: no objects specified for multi-file optimization
xild: executing 'ld'
yes
checking whether -lc should be explicitly linked in... (cached) no
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
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 zlib
checking for Z... yes
Checking lzma
checking for LZMA... yes
Checking headers
checking for dirent.h that defines DIR... (cached) yes
checking for library containing opendir... (cached) none required
checking for ANSI C header files... (cached) yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for ctype.h... (cached) yes
checking for dirent.h... (cached) yes
checking for errno.h... (cached) yes
checking for malloc.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for time.h... (cached) yes
checking for math.h... (cached) yes
checking for limits.h... (cached) yes
checking for float.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for netdb.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... (cached) yes
checking for poll.h... (cached) yes
checking for sys/mman.h... (cached) yes
checking for sys/timeb.h... (cached) yes
checking for signal.h... (cached) yes
checking for arpa/nameser.h... (cached) yes
checking for resolv.h... (cached) yes
checking for dl.h... (cached) no
checking for dlfcn.h... (cached) yes
Checking types
checking for uint32_t... (cached) yes
Checking libraries
checking for strftime... (cached) yes
checking for strftime... (cached) yes
checking for localtime... (cached) yes
checking for gettimeofday... (cached) yes
checking for ftime... (cached) yes
checking for stat... (cached) yes
checking for signal... (cached) yes
checking for rand... (cached) yes
checking for rand_r... (cached) yes
checking for srand... (cached) yes
checking for time... (cached) yes
checking for isascii... (cached) yes
checking for mmap... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for va_copy... yes
checking whether va_list is an array type... yes
checking for library containing gethostent... (cached) none required
checking for library containing setsockopt... (cached) none required
checking for library containing connect... (cached) none required
checking for type of socket length (socklen_t)... socklen_t *
checking for const gethostbyname() argument... yes
checking for const send() second argument... yes
checking whether to enable IPv6... yes
checking struct sockaddr::ss_family... yes
checking for getaddrinfo... (cached) yes
checking for isnan... (cached) yes
checking for isinf... (cached) yes
Found python in /usr/bin/python3.7
Found Python version 3.7
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dlopen... (cached) yes
Checking configuration requirements
Enabling multithreaded support
checking for pthread.h... (cached) yes
checking for pthread_join in -lpthread... (cached) yes
Enabling xmllint shell history
checking for tputs in -lncurses... (cached) yes
checking for readline/history.h... (cached) yes
checking for append_history in -lhistory... (cached) yes
checking for readline/readline.h... (cached) yes
checking for readline in -lreadline... (cached) yes
Enabled Schematron support
checking for iconv.h... (cached) yes
checking for iconv... yes
checking for iconv declaration... (cached)
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
Disabling ICU support
Enabled Schemas/Relax-NG support
checking for printf... (cached) yes
checking for sprintf... (cached) yes
checking for fprintf... (cached) yes
checking for snprintf... (cached) yes
checking for vfprintf... (cached) yes
checking for vsprintf... (cached) yes
checking for vsnprintf... (cached) yes
checking for sscanf... (cached) yes
Disabling code coverage for GCC
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libxml2.spec
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/libxml/Makefile
config.status: creating doc/Makefile
config.status: creating doc/examples/Makefile
config.status: creating doc/devhelp/Makefile
config.status: creating example/Makefile
config.status: creating python/Makefile
config.status: creating python/tests/Makefile
config.status: creating xstc/Makefile
config.status: creating include/libxml/xmlversion.h
config.status: creating libxml-2.0.pc
config.status: creating libxml-2.0-uninstalled.pc
config.status: creating libxml2-config.cmake
config.status: creating python/setup.py
config.status: creating xml2-config
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
Done configuring
touch doconfigure-python3.7
dh_auto_configure --parallel --builddirectory=builddir/python3.7-dbg -- --disable-silent-rules --with-history --cache-file="/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache" --with-python=/usr/bin/python3.7 --with-python-install-dir=/usr/lib/python3.7/dist-packages
install -d builddir/python3.7-dbg
cd builddir/python3.7-dbg && ../../configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --runstatedir=/run --disable-maintainer-mode --disable-dependency-tracking --disable-silent-rules --with-history --cache-file=/dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache --with-python=/usr/bin/python3.7 --with-python-install-dir=/usr/lib/python3.7/dist-packages
configure: loading site script /usr/share/config.site
configure: loading cache /dev/shm/libxml2/libxml2-2.9.8/builddir/config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... (cached) x86_64-pc-linux-gnu
checking host system type... (cached) x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking whether make supports nested variables... (cached) yes
checking whether make supports nested variables... (cached) yes
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... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether icc accepts -g... (cached) yes
checking for icc option to accept ISO C89... (cached) none needed
checking whether icc understands -c and -o together... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of icc... (cached) gcc3
checking whether ln -s works... yes
checking how to run the C preprocessor... icc -E
checking for mv... (cached) /bin/mv
checking for tar... (cached) /bin/tar
checking for perl... (cached) /usr/bin/perl
checking for wget... (cached) /usr/bin/wget
checking for xmllint... (cached) /usr/bin/xmllint
checking for xsltproc... (cached) /usr/bin/xsltproc
checking pkg-config is at least version 0.9.0... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/grep -E
checking for fgrep... (cached) /bin/grep -F
checking for ld used by icc... (cached) xild -m elf_x86_64
checking if the linker (xild -m elf_x86_64) is GNU ld... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/x86_64-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-linux-gnu-nm -B) interface... (cached) BSD nm
checking the maximum length of command line arguments... (cached) 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... (cached) func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... (cached) func_convert_file_noop
checking for xild -m elf_x86_64 option to reload object files... (cached) -r