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
|
DC-Build-Header: gnutls13 2.0.4-2 / Wed Feb 13 02:20:17 +0100 2008
Automatic build of gnutls13_2.0.4-2 on bordereau-79.bordeaux.grid5000.fr by sbuild/amd64 0.57.0
Build started at 20080213-0220
******************************************************************************
Failed to open ./gnutls13_2.0.4-2.dsc
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 5925kB of source archives.
Get:1 http://idpot.grenoble.grid5000.fr sid/main gnutls13 2.0.4-2 (dsc) [881B]
Get:2 http://idpot.grenoble.grid5000.fr sid/main gnutls13 2.0.4-2 (tar) [5907kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main gnutls13 2.0.4-2 (diff) [17.7kB]
Fetched 5925kB in 1s (3787kB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: autotools-dev, cdbs, debhelper (>= 5.0.0), libgcrypt11-dev (>= 1.2.2), liblzo2-dev, libopencdk10-dev, libtasn1-3-dev (>= 0.3.4-1), zlib1g-dev
Checking for already installed source dependencies...
autotools-dev: missing
cdbs: missing
debhelper: missing
Using default version 6.0.5
libgcrypt11-dev: missing
Using default version 1.4.0-3
liblzo2-dev: missing
libopencdk10-dev: missing
libtasn1-3-dev: missing
Using default version 1.3-1
zlib1g-dev: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
bsdmainutils file gettext gettext-base groff-base html2text intltool-debian
libgomp1 libgpg-error-dev libmagic1 man-db po-debconf
Suggested packages:
wamerican wordlist whois vacation devscripts doc-base dh-make cvs
gettext-doc groff libgcrypt11-doc www-browser
Recommended packages:
curl wget lynx libcompress-zlib-perl libmail-box-perl libmail-sendmail-perl
The following NEW packages will be installed:
autotools-dev bsdmainutils cdbs debhelper file gettext gettext-base
groff-base html2text intltool-debian libgcrypt11-dev libgomp1
libgpg-error-dev liblzo2-dev libmagic1 libopencdk10-dev libtasn1-3-dev
man-db po-debconf zlib1g-dev
0 upgraded, 20 newly installed, 0 to remove and 0 not upgraded.
Need to get 8214kB of archives.
After this operation, 23.3MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
bsdmainutils groff-base man-db libmagic1 file gettext-base autotools-dev
html2text libgomp1 gettext intltool-debian po-debconf debhelper cdbs
libgpg-error-dev libgcrypt11-dev liblzo2-dev libopencdk10-dev libtasn1-3-dev
zlib1g-dev
Authentication warning overridden.
Get:1 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
Get:2 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-16 [844kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
Get:4 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
Get:5 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
Get:6 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
Get:7 http://idpot.grenoble.grid5000.fr sid/main autotools-dev 20070725.1 [61.8kB]
Get:8 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
Get:9 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3-20080202-1 [13.3kB]
Get:10 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
Get:11 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:12 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.11 [231kB]
Get:13 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.5 [519kB]
Get:14 http://idpot.grenoble.grid5000.fr sid/main cdbs 0.4.51 [919kB]
Get:15 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
Get:16 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
Get:17 http://idpot.grenoble.grid5000.fr sid/main liblzo2-dev 2.02-3 [140kB]
Get:18 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
Get:19 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
Get:20 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 8214kB in 0s (24.8MB/s)
Selecting previously deselected package bsdmainutils.
(Reading database ... 9173 files and directories currently installed.)
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-16_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20070725.1_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.11_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_6.0.5_all.deb) ...
Selecting previously deselected package cdbs.
Unpacking cdbs (from .../archives/cdbs_0.4.51_all.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
Selecting previously deselected package liblzo2-dev.
Unpacking liblzo2-dev (from .../liblzo2-dev_2.02-3_i386.deb) ...
Selecting previously deselected package libopencdk10-dev.
Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
Setting up bsdmainutils (6.1.10) ...
Setting up groff-base (1.18.1.1-16) ...
Setting up man-db (2.5.1-2) ...
Building database of manual pages ...
Setting up libmagic1 (4.23-2) ...
Setting up file (4.23-2) ...
Setting up gettext-base (0.17-2) ...
Setting up autotools-dev (20070725.1) ...
Setting up html2text (1.3.2a-3) ...
Setting up libgomp1 (4.3-20080202-1) ...
Setting up gettext (0.17-2) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.11) ...
Setting up debhelper (6.0.5) ...
Setting up cdbs (0.4.51) ...
Setting up libgpg-error-dev (1.4-2) ...
Setting up libgcrypt11-dev (1.4.0-3) ...
Setting up liblzo2-dev (2.02-3) ...
Setting up libopencdk10-dev (0.6.6-1) ...
Setting up libtasn1-3-dev (1.3-1) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
Checking correctness of source dependencies...
Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
Toolchain package versions: libc6-dev_2.7-6 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-1 g++-4.2_4.2.3-1 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-1 libstdc++6_4.3-20080202-1
------------------------------------------------------------------------------
gpg: Signature made Tue Feb 12 18:26:41 2008 CET using DSA key ID 8B8D7663
gpg: Can't check signature: public key not found
dpkg-source: extracting gnutls13 in gnutls13-2.0.4
dpkg-source: unpacking gnutls13_2.0.4.orig.tar.gz
dpkg-source: applying ./gnutls13_2.0.4-2.diff.gz
dpkg-buildpackage: source package gnutls13
dpkg-buildpackage: source version 2.0.4-2
dpkg-buildpackage: source changed by Andreas Metzler <ametzler@debian.org>
dpkg-buildpackage: host architecture i386
/usr/bin/fakeroot debian/rules clean
test -x debian/rules
dh_testroot
/usr/bin/make -f debian/rules reverse-config
make[1]: Entering directory `/build/user/gnutls13-2.0.4'
for i in ./build-aux/config.guess ./build-aux/config.sub ./build-aux/config.rpath ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
make[1]: Leaving directory `/build/user/gnutls13-2.0.4'
if [ "reverse-patches" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
patches: debian/patches/12_lessdeps.diff debian/patches/13_lessdeps_gnutls-config.diff debian/patches/14_version_gettextcat.diff
Patch debian/patches/14_version_gettextcat.diff is not applied.
Patch debian/patches/13_lessdeps_gnutls-config.diff is not applied.
Patch debian/patches/12_lessdeps.diff is not applied.
if [ "reverse-patches" != "reverse-patches" ]; then touch debian/stamp-patched; fi
if [ "reverse-patches" != "reverse-patches" ] ; then \
/usr/bin/make -f debian/rules update-config ; \
fi
for dir in debian/patches ; do \
rm -f $dir/*.log ; \
done
for i in ./build-aux/config.guess ./build-aux/config.sub ./build-aux/config.rpath ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
dh_clean
/usr/bin/make -C . -k distclean
make[1]: Entering directory `/build/user/gnutls13-2.0.4'
make[1]: *** No rule to make target `distclean'.
make[1]: Leaving directory `/build/user/gnutls13-2.0.4'
make: [makefile-clean] Error 2 (ignored)
rm -f debian/stamp-makefile-build
rm -f debian/stamp-makefile-check
rm -f debian/stamp-autotools-files
mkdir -p m4
rm -rf autom4te.cache
rm -f tests/stamp-tests
# stupid conflicts
rm -f libextra/lzoconf.h libextra/lzodefs.h
rm -f doc/*.info*
dpkg-source -b gnutls13-2.0.4
dpkg-source: building gnutls13 using existing gnutls13_2.0.4.orig.tar.gz
dpkg-source: building gnutls13 in gnutls13_2.0.4-2.diff.gz
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-15
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-3
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-17
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-20
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-16
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-21
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-13
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-26
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-7
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-18
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-23
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-11
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-24
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-19
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-12
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-9
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-4
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-6
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-22
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-1
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-27
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-2
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-25
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-5
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-10
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-14
dpkg-source: warning: ignoring deletion of file doc/gnutls.info
dpkg-source: warning: ignoring deletion of file doc/gnutls.info-8
dpkg-source: building gnutls13 in gnutls13_2.0.4-2.dsc
debian/rules build
test -x debian/rules
mkdir -p "."
/usr/bin/make -f debian/rules reverse-config
make[1]: Entering directory `/build/user/gnutls13-2.0.4'
for i in ./build-aux/config.guess ./build-aux/config.sub ./build-aux/config.rpath ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
make[1]: Leaving directory `/build/user/gnutls13-2.0.4'
if [ "debian/stamp-patched" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
patches: debian/patches/12_lessdeps.diff debian/patches/13_lessdeps_gnutls-config.diff debian/patches/14_version_gettextcat.diff
Trying patch debian/patches/12_lessdeps.diff at level 1 ... success.
Trying patch debian/patches/13_lessdeps_gnutls-config.diff at level 1 ... success.
Trying patch debian/patches/14_version_gettextcat.diff at level 1 ... success.
if [ "debian/stamp-patched" != "reverse-patches" ]; then touch debian/stamp-patched; fi
if [ "debian/stamp-patched" != "reverse-patches" ] ; then \
/usr/bin/make -f debian/rules update-config ; \
fi
make[1]: Entering directory `/build/user/gnutls13-2.0.4'
if test -e /usr/share/misc/config.guess ; then \
for i in ./build-aux/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 ./build-aux/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
if test -e /usr/share/gnulib/config/config.rpath ; then \
for i in ./build-aux/config.rpath ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/gnulib/config/config.rpath $i ; \
fi ; \
done ; \
fi
make[1]: Leaving directory `/build/user/gnutls13-2.0.4'
if test -e /usr/share/misc/config.guess ; then \
for i in ./build-aux/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 ./build-aux/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
if test -e /usr/share/gnulib/config/config.rpath ; then \
for i in ./build-aux/config.rpath ; do \
if ! test -e $i.cdbs-orig ; then \
mv $i $i.cdbs-orig ; \
cp --remove-destination /usr/share/gnulib/config/config.rpath $i ; \
fi ; \
done ; \
fi
cd . && chmod +x doc/scripts/sort2.pl doc/scripts/gdoc
touch debian/stamp-autotools-files
chmod a+x /build/user/gnutls13-2.0.4/./configure
cd . && CC="cc" CXX="g++" CFLAGS="-g -Wall -O2" CXXFLAGS="-g -Wall -O2" CPPFLAGS="" LDFLAGS="" /build/user/gnutls13-2.0.4/./configure --build=i486-linux-gnu --prefix=/usr --includedir="\${prefix}/include" --mandir="\${prefix}/share/man" --infodir="\${prefix}/share/info" --sysconfdir=/etc --localstatedir=/var --libexecdir="\${prefix}/lib/gnutls13" --disable-maintainer-mode --disable-dependency-tracking --srcdir=. --with-mcrypt=no --enable-ld-version-script --disable-guile --disable-static --disable-gtk-doc
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking target system type... i486-pc-linux-gnu
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... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
configure: autobuild project... GnuTLS
configure: autobuild revision... 2.0.4
configure: autobuild hostname... bordereau-79.bordeaux.grid5000.fr
configure: autobuild timestamp... 20080213-022038
checking whether in dmalloc mode... no
checking whether in electric fence mode... no
checking whether in developer mode... no
checking whether in profile mode... no
***
*** Checking for compilation programs...
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for style of include used by make... GNU
checking for gcc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking dependency style of cc... none
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking dependency style of cc... (cached) none
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking whether ln -s works... yes
checking for gaa... no
configure: WARNING: ***
*** GAA was not found. It is only needed if you wish to modify
*** the source code or command-line description files. In this case,
*** you may want to get it from http://gaa.sourceforge.net/
***
***
*** Detecting compiler options...
checking for ranlib... ranlib
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for cc option to accept ISO C99... -std=gnu99
checking for cc -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99
checking how to run the C preprocessor... cc -std=gnu99 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for AIX... no
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 minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking whether to build C++ library... yes
checking whether C99 macros are supported... yes
checking if gcc supports -Wno-pointer-sign... yes
checking if gcc/ld supports -Wl,--output-def... no
checking whether we have GNU assembler... yes
***
*** Detecting C library capabilities...
checking for ANSI C header files... (cached) yes
checking for strings.h... (cached) yes
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for umask... yes
checking for vasprintf... yes
checking for isascii... yes
checking for fork... yes
checking for working alloca.h... yes
checking for alloca... yes
***
*** Detecting system's parameters...
checking for valgrind... no
checking whether self tests are run under valgrind... no
checking for unsigned long... yes
checking size of unsigned long... 4
checking for unsigned int... yes
checking size of unsigned int... 4
checking for void *... yes
checking size of void *... 4
checking for long... yes
checking size of long... 4
checking for int... yes
checking size of int... 4
checking for uint... yes
checking for ssize_t... yes
checking whether byte ordering is bigendian... no
***
*** Checking for external libraries...
checking whether building Guile bindings... no
checking for libgcrypt-config... /usr/bin/libgcrypt-config
checking for LIBGCRYPT - version >= 1.2.2... yes
checking LIBGCRYPT API version... okay
checking whether to disable SRP authentication support... no
checking whether to disable PSK authentication support... no
checking whether to disable anonymous authentication support... no
checking whether to disable extra PKI stuff... no
checking whether to disable OpenPGP Certificate authentication support... no
checking for libopencdk... yes
checking how to link with libopencdk... /usr/lib/libopencdk.so /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so /usr/lib/libnsl.so /usr/lib/libz.so
checking whether to use the included opencdk... no
checking whether to disable OpenSSL compatibility layer... no
checking for libtasn1-config... /usr/bin/libtasn1-config
checking for libtasn1 - version >= 0.3.4... yes
checking whether to use the included minitasn1... no
checking for cfg_get_context in -lcfg+... no
configure: WARNING:
***
*** Libcfg+ was not found. Will use the included one.
checking whether to use the included libcfg... yes
checking whether to include zlib compression support... yes
checking for libz... yes
checking how to link with libz... /usr/lib/libz.so
checking whether to include lzo compression support... yes
checking whether to use the included lzo compression library... no
checking for lzo1x_1_compress in -llzo2... yes
checking lzo/lzo1x.h usability... yes
checking lzo/lzo1x.h presence... yes
checking for lzo/lzo1x.h... yes
***
*** Setting up gnulib compatibility files...
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking for netdb.h... (cached) yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking stdio_ext.h usability... yes
checking stdio_ext.h presence... yes
checking for stdio_ext.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking for float.h... (cached) yes
checking for stdint.h... (cached) yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking whether stdin defaults to large file offsets... yes
checking whether the preprocessor supports include_next... yes
checking whether <sys/socket.h> is self-contained... yes
checking for C/C++ restrict keyword... restrict
checking for IPv4 sockets... yes
checking for IPv6 sockets... yes
checking whether getdelim is declared... yes
checking whether getline is declared... yes
checking whether getpass is declared... yes
checking for __fsetlocking... yes
checking for tcgetattr... yes
checking for tcsetattr... yes
checking for lstat... yes
checking for vasnprintf... no
checking whether fflush_unlocked is declared... yes
checking whether flockfile is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether funlockfile is declared... yes
checking whether putc_unlocked is declared... yes
checking whether strdup is declared... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for error_at_line... yes
checking for fseeko... yes
configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo
checking for library containing getaddrinfo... none required
checking for getaddrinfo... yes
checking for gai_strerror (possibly via ws2tcpip.h)... yes
checking for library containing gethostbyname... none required
checking for library containing getservbyname... none required
checking for gethostbyname... yes
checking whether getaddrinfo is declared... yes
checking whether freeaddrinfo is declared... yes
checking whether gai_strerror is declared... yes
checking whether getnameinfo is declared... yes
checking for struct addrinfo... yes
checking for getdelim... yes
checking for getline... yes
checking for working getline function... yes
checking for getpass... yes
checking for inet_ntop... yes
checking whether inet_ntop is declared... yes
checking for inet_pton... yes
checking whether inet_pton is declared... yes
checking whether lseek detects pipes... yes
checking whether <netinet/in.h> is self-contained... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for readline... no
checking readline/readline.h usability... no
checking readline/readline.h presence... no
checking for readline/readline.h... no
checking for socklen_t... yes
checking for va_copy... yes
checking for strdup... yes
checking whether memmem is declared... yes
checking whether <limits.h> defines MIN and MAX... no
checking whether <sys/param.h> defines MIN and MAX... yes
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking whether snprintf is declared... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for long long int... yes
checking for unsigned long long int... yes
checking whether stat file-mode macros are broken... no
checking for struct timespec in <time.h>... yes
checking for EOVERFLOW... yes
checking for wchar_t... yes
checking for wint_t... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking for alloca as a compiler built-in... yes
checking device with (strong) random data...... /dev/random
checking device with pseudo random data...... /dev/urandom
checking device with unpredictable data for nonces...... /dev/urandom
checking for /dev/random... yes
checking for /dev/urandom... yes
checking for /dev/urandom... (cached) yes
checking for memmem... yes
checking for memmove... yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking for snprintf... yes
checking for socklen_t... (cached) yes
checking whether stdint.h conforms to C99... yes
checking for strverscmp... yes
checking whether <sys/socket.h> is self-contained... (cached) yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking whether mkdir is declared... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking whether localtime_r is compatible with its POSIX signature... yes
checking for ptrdiff_t... yes
checking for snprintf... (cached) yes
checking for wcslen... yes
checking whether _snprintf is declared... no
checking for vasprintf... (cached) yes
checking whether <wchar.h> is standalone... yes
checking for stdint.h... (cached) yes
checking if we have Windows sockets and WSAStartup/WSACleanup... no
***
*** Detecting options for shared libraries...
checking for a sed that does not truncate output... /bin/sed
checking for ld used by cc -std=gnu99... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking how to recognise dependent libraries... pass_all
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from cc -std=gnu99 object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... (cached) ranlib
checking for strip... strip
checking if cc -std=gnu99 supports -fno-rtti -fno-exceptions... no
checking for cc -std=gnu99 option to produce PIC... -fPIC
checking if cc -std=gnu99 PIC flag -fPIC works... yes
checking if cc -std=gnu99 static flag -static works... yes
checking if cc -std=gnu99 supports -c -o file.o... yes
checking whether the cc -std=gnu99 linker (/usr/bin/ld) 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 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... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating doc/Makefile
config.status: creating doc/examples/Makefile
config.status: creating doc/scripts/Makefile
config.status: creating doc/manpages/Makefile
config.status: creating doc/reference/Makefile
config.status: creating doc/credentials/Makefile
config.status: creating doc/credentials/x509/Makefile
config.status: creating doc/credentials/srp/Makefile
config.status: creating doc/credentials/openpgp/Makefile
config.status: creating gl/Makefile
config.status: creating lgl/Makefile
config.status: creating tests/Makefile
config.status: creating tests/rsa-md5-collision/Makefile
config.status: creating tests/userid/Makefile
config.status: creating tests/pkcs1-padding/Makefile
config.status: creating tests/pkcs8-decode/Makefile
config.status: creating tests/pkcs12-decode/Makefile
config.status: creating tests/pathlen/Makefile
config.status: creating tests/key-id/Makefile
config.status: creating tests/sha2/Makefile
config.status: creating tests/hostname-check/Makefile
config.status: creating includes/Makefile
config.status: creating includes/gnutls/gnutls.h
config.status: creating lib/Makefile
config.status: creating lib/minitasn1/Makefile
config.status: creating lib/x509/Makefile
config.status: creating libextra/Makefile
config.status: creating libextra/openpgp/Makefile
config.status: creating libextra/opencdk/Makefile
config.status: creating libextra/minilzo/Makefile
config.status: creating tests/openpgp/Makefile
config.status: creating src/Makefile
config.status: creating src/cfg/Makefile
config.status: creating src/cfg/platon/Makefile
config.status: creating src/cfg/platon/str/Makefile
config.status: creating lib/libgnutls-config
config.status: creating libextra/libgnutls-extra-config
config.status: creating lib/gnutls.pc
config.status: creating libextra/gnutls-extra.pc
config.status: creating guile/Makefile
config.status: creating guile/modules/Makefile
config.status: creating guile/src/Makefile
config.status: creating guile/tests/Makefile
config.status: creating guile/pre-inst-guile
config.status: creating config.h
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing depfiles commands
config.status: executing chmod-config commands
/usr/bin/make -C .
make[1]: Entering directory `/build/user/gnutls13-2.0.4'
/usr/bin/make all-recursive
make[2]: Entering directory `/build/user/gnutls13-2.0.4'
Making all in lgl
make[3]: Entering directory `/build/user/gnutls13-2.0.4/lgl'
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
cat ./alloca_.h; \
} > alloca.h-t
mv -f alloca.h-t alloca.h
rm -f stdio.h-t stdio.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's/@''INCLUDE_NEXT''@/include_next/g' \
-e 's|@''NEXT_STDIO_H''@|<stdio.h>|g' \
-e 's|@''GNULIB_FPRINTF_POSIX''@|0|g' \
-e 's|@''GNULIB_PRINTF_POSIX''@|0|g' \
-e 's|@''GNULIB_SNPRINTF''@|1|g' \
-e 's|@''GNULIB_SPRINTF_POSIX''@|0|g' \
-e 's|@''GNULIB_VFPRINTF_POSIX''@|0|g' \
-e 's|@''GNULIB_VPRINTF_POSIX''@|0|g' \
-e 's|@''GNULIB_VSNPRINTF''@|0|g' \
-e 's|@''GNULIB_VSPRINTF_POSIX''@|0|g' \
-e 's|@''GNULIB_VASPRINTF''@|1|g' \
-e 's|@''GNULIB_FSEEK''@|0|g' \
-e 's|@''GNULIB_FSEEKO''@|1|g' \
-e 's|@''GNULIB_FTELL''@|0|g' \
-e 's|@''GNULIB_FTELLO''@|0|g' \
-e 's|@''GNULIB_FFLUSH''@|0|g' \
-e 's|@''GNULIB_GETDELIM''@|1|g' \
-e 's|@''GNULIB_GETLINE''@|1|g' \
-e 's|@''REPLACE_FPRINTF''@|0|g' \
-e 's|@''REPLACE_VFPRINTF''@|0|g' \
-e 's|@''REPLACE_PRINTF''@|0|g' \
-e 's|@''REPLACE_VPRINTF''@|0|g' \
-e 's|@''REPLACE_SNPRINTF''@|0|g' \
-e 's|@''HAVE_DECL_SNPRINTF''@|1|g' \
-e 's|@''REPLACE_VSNPRINTF''@|0|g' \
-e 's|@''HAVE_DECL_VSNPRINTF''@|1|g' \
-e 's|@''REPLACE_SPRINTF''@|0|g' \
-e 's|@''REPLACE_VSPRINTF''@|0|g' \
-e 's|@''HAVE_VASPRINTF''@|1|g' \
-e 's|@''REPLACE_VASPRINTF''@|0|g' \
-e 's|@''REPLACE_FSEEKO''@|0|g' \
-e 's|@''REPLACE_FSEEK''@|0|g' \
-e 's|@''REPLACE_FTELLO''@|0|g' \
-e 's|@''REPLACE_FTELL''@|0|g' \
-e 's|@''REPLACE_FFLUSH''@|0|g' \
-e 's|@''HAVE_DECL_GETDELIM''@|1|g' \
-e 's|@''HAVE_DECL_GETLINE''@|1|g' \
-e 's|@''REPLACE_GETLINE''@|0|g' \
-e '/definition of GL_LINK_WARNING/r ../build-aux/link-warning.h' \
< ./stdio_.h; \
} > stdio.h-t
mv stdio.h-t stdio.h
rm -f stdlib.h-t stdlib.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's/@''INCLUDE_NEXT''@/include_next/g' \
-e 's|@''NEXT_STDLIB_H''@|<stdlib.h>|g' \
-e 's|@''GNULIB_MALLOC_POSIX''@|0|g' \
-e 's|@''GNULIB_REALLOC_POSIX''@|1|g' \
-e 's|@''GNULIB_CALLOC_POSIX''@|0|g' \
-e 's|@''GNULIB_GETSUBOPT''@|0|g' \
-e 's|@''GNULIB_MKDTEMP''@|0|g' \
-e 's|@''GNULIB_MKSTEMP''@|0|g' \
-e 's|@''HAVE_CALLOC_POSIX''@|1|g' \
-e 's|@''HAVE_GETSUBOPT''@|1|g' \
-e 's|@''HAVE_MALLOC_POSIX''@|1|g' \
-e 's|@''HAVE_MKDTEMP''@|1|g' \
-e 's|@''HAVE_REALLOC_POSIX''@|1|g' \
-e 's|@''REPLACE_MKSTEMP''@|0|g' \
-e '/definition of GL_LINK_WARNING/r ../build-aux/link-warning.h' \
< ./stdlib_.h; \
} > stdlib.h-t
mv stdlib.h-t stdlib.h
rm -f string.h-t string.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's/@''INCLUDE_NEXT''@/include_next/g' \
-e 's|@''NEXT_STRING_H''@|<string.h>|g' \
-e 's|@''GNULIB_MBSLEN''@|0|g' \
-e 's|@''GNULIB_MBSNLEN''@|0|g' \
-e 's|@''GNULIB_MBSCHR''@|0|g' \
-e 's|@''GNULIB_MBSRCHR''@|0|g' \
-e 's|@''GNULIB_MBSSTR''@|0|g' \
-e 's|@''GNULIB_MBSCASECMP''@|0|g' \
-e 's|@''GNULIB_MBSNCASECMP''@|0|g' \
-e 's|@''GNULIB_MBSPCASECMP''@|0|g' \
-e 's|@''GNULIB_MBSCASESTR''@|0|g' \
-e 's|@''GNULIB_MBSCSPN''@|0|g' \
-e 's|@''GNULIB_MBSPBRK''@|0|g' \
-e 's|@''GNULIB_MBSSPN''@|0|g' \
-e 's|@''GNULIB_MBSSEP''@|0|g' \
-e 's|@''GNULIB_MBSTOK_R''@|0|g' \
-e 's|@''GNULIB_MEMMEM''@|1|g' \
-e 's|@''GNULIB_MEMPCPY''@|0|g' \
-e 's|@''GNULIB_MEMRCHR''@|0|g' \
-e 's|@''GNULIB_STPCPY''@|0|g' \
-e 's|@''GNULIB_STPNCPY''@|0|g' \
-e 's|@''GNULIB_STRCHRNUL''@|0|g' \
-e 's|@''GNULIB_STRDUP''@|1|g' \
-e 's|@''GNULIB_STRNDUP''@|0|g' \
-e 's|@''GNULIB_STRNLEN''@|0|g' \
-e 's|@''GNULIB_STRPBRK''@|0|g' \
-e 's|@''GNULIB_STRSEP''@|0|g' \
-e 's|@''GNULIB_STRCASESTR''@|0|g' \
-e 's|@''GNULIB_STRTOK_R''@|0|g' \
-e 's|@''HAVE_DECL_MEMMEM''@|1|g' \
-e 's|@''HAVE_MEMPCPY''@|1|g' \
-e 's|@''HAVE_DECL_MEMRCHR''@|1|g' \
-e 's|@''HAVE_STPCPY''@|1|g' \
-e 's|@''HAVE_STPNCPY''@|1|g' \
-e 's|@''HAVE_STRCASECMP''@|1|g' \
-e 's|@''HAVE_DECL_STRNCASECMP''@|1|g' \
-e 's|@''HAVE_STRCHRNUL''@|1|g' \
-e 's|@''HAVE_DECL_STRDUP''@|1|g' \
-e 's|@''HAVE_STRNDUP''@|1|g' \
-e 's|@''HAVE_DECL_STRNDUP''@|1|g' \
-e 's|@''HAVE_DECL_STRNLEN''@|1|g' \
-e 's|@''HAVE_STRPBRK''@|1|g' \
-e 's|@''HAVE_STRSEP''@|1|g' \
-e 's|@''HAVE_STRCASESTR''@|1|g' \
-e 's|@''HAVE_DECL_STRTOK_R''@|1|g' \
-e '/definition of GL_LINK_WARNING/r ../build-aux/link-warning.h' \
< ./string_.h; \
} > string.h-t
mv string.h-t string.h
/bin/mkdir -p sys
rm -f sys/stat.h-t sys/stat.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
sed -e 's/@''INCLUDE_NEXT''@/include_next/g' \
-e 's|@''NEXT_SYS_STAT_H''@|<sys/stat.h>|g' \
-e 's|@''HAVE_IO_H''@|0|g' \
-e 's|@''HAVE_LSTAT''@|1|g' \
-e 's|@''HAVE_DECL_MKDIR''@|1|g' \
< ./sys_stat_.h; \
} > sys/stat.h-t
mv sys/stat.h-t sys/stat.h
rm -f time.h-t time.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's/@''INCLUDE_NEXT''@/include_next/g' \
-e 's|@NEXT_TIME_H''@|<time.h>|g' \
-e 's|@REPLACE_LOCALTIME_R''@|0|g' \
-e 's|@REPLACE_NANOSLEEP''@|GNULIB_PORTCHECK|g' \
-e 's|@REPLACE_STRPTIME''@|GNULIB_PORTCHECK|g' \
-e 's|@REPLACE_TIMEGM''@|GNULIB_PORTCHECK|g' \
-e 's|@SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|0|g' \
-e 's|@TIME_H_DEFINES_STRUCT_TIMESPEC''@|1|g' \
< ./time_.h; \
} > time.h-t
mv time.h-t time.h
rm -f unistd.h-t unistd.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
sed -e 's|@''HAVE_UNISTD_H''@|1|g' \
-e 's/@''INCLUDE_NEXT''@/include_next/g' \
-e 's|@''NEXT_UNISTD_H''@|<unistd.h>|g' \
-e 's|@''GNULIB_CHOWN''@|0|g' \
-e 's|@''GNULIB_DUP2''@|0|g' \
-e 's|@''GNULIB_FCHDIR''@|0|g' \
-e 's|@''GNULIB_FTRUNCATE''@|0|g' \
-e 's|@''GNULIB_GETCWD''@|0|g' \
-e 's|@''GNULIB_GETLOGIN_R''@|0|g' \
-e 's|@''GNULIB_LCHOWN''@|0|g' \
-e 's|@''GNULIB_LSEEK''@|1|g' \
-e 's|@''GNULIB_READLINK''@|0|g' \
-e 's|@''GNULIB_SLEEP''@|0|g' \
-e 's|@''HAVE_DUP2''@|1|g' \
-e 's|@''HAVE_FTRUNCATE''@|1|g' \
-e 's|@''HAVE_READLINK''@|1|g' \
-e 's|@''HAVE_SLEEP''@|1|g' \
-e 's|@''HAVE_DECL_GETLOGIN_R''@|1|g' \
-e 's|@''REPLACE_CHOWN''@|0|g' \
-e 's|@''REPLACE_FCHDIR''@|0|g' \
-e 's|@''REPLACE_GETCWD''@|0|g' \
-e 's|@''REPLACE_LCHOWN''@|0|g' \
-e 's|@''REPLACE_LSEEK''@|0|g' \
< ./unistd_.h; \
} > unistd.h-t
mv unistd.h-t unistd.h
/usr/bin/make all-am
make[4]: Entering directory `/build/user/gnutls13-2.0.4/lgl'
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o dummy.lo dummy.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c dummy.c -fPIC -DPIC -o .libs/dummy.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o asnprintf.lo asnprintf.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c asnprintf.c -fPIC -DPIC -o .libs/asnprintf.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gc-libgcrypt.lo gc-libgcrypt.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gc-libgcrypt.c -fPIC -DPIC -o .libs/gc-libgcrypt.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gc-pbkdf2-sha1.lo gc-pbkdf2-sha1.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gc-pbkdf2-sha1.c -fPIC -DPIC -o .libs/gc-pbkdf2-sha1.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o md2.lo md2.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c md2.c -fPIC -DPIC -o .libs/md2.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o printf-args.lo printf-args.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c printf-args.c -fPIC -DPIC -o .libs/printf-args.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o printf-parse.lo printf-parse.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c printf-parse.c -fPIC -DPIC -o .libs/printf-parse.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o read-file.lo read-file.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c read-file.c -fPIC -DPIC -o .libs/read-file.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o vasnprintf.lo vasnprintf.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../intl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c vasnprintf.c -fPIC -DPIC -o .libs/vasnprintf.o
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -lgcrypt -o liblgnu.la dummy.lo asnprintf.lo gc-libgcrypt.lo gc-pbkdf2-sha1.lo md2.lo printf-args.lo printf-parse.lo read-file.lo vasnprintf.lo
ar cru .libs/liblgnu.a .libs/dummy.o .libs/asnprintf.o .libs/gc-libgcrypt.o .libs/gc-pbkdf2-sha1.o .libs/md2.o .libs/printf-args.o .libs/printf-parse.o .libs/read-file.o .libs/vasnprintf.o
ranlib .libs/liblgnu.a
creating liblgnu.la
(cd .libs && rm -f liblgnu.la && ln -s ../liblgnu.la liblgnu.la)
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/lgl'
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/lgl'
Making all in gl
make[3]: Entering directory `/build/user/gnutls13-2.0.4/gl'
/usr/bin/make all-am
make[4]: Entering directory `/build/user/gnutls13-2.0.4/gl'
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o progname.lo progname.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c progname.c -fPIC -DPIC -o .libs/progname.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o version-etc.lo version-etc.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c version-etc.c -fPIC -DPIC -o .libs/version-etc.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o version-etc-fsf.lo version-etc-fsf.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c version-etc-fsf.c -fPIC -DPIC -o .libs/version-etc-fsf.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o readline.lo readline.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c readline.c -fPIC -DPIC -o .libs/readline.o
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o libgnu.la progname.lo version-etc.lo version-etc-fsf.lo readline.lo ../lgl/liblgnu.la
rm -fr .libs/libgnu.lax
mkdir .libs/libgnu.lax
rm -fr .libs/libgnu.lax/liblgnu.a
mkdir .libs/libgnu.lax/liblgnu.a
(cd .libs/libgnu.lax/liblgnu.a && ar x /build/user/gnutls13-2.0.4/gl/../lgl/.libs/liblgnu.a)
ar cru .libs/libgnu.a .libs/progname.o .libs/version-etc.o .libs/version-etc-fsf.o .libs/readline.o .libs/libgnu.lax/liblgnu.a/dummy.o .libs/libgnu.lax/liblgnu.a/asnprintf.o .libs/libgnu.lax/liblgnu.a/gc-libgcrypt.o .libs/libgnu.lax/liblgnu.a/gc-pbkdf2-sha1.o .libs/libgnu.lax/liblgnu.a/md2.o .libs/libgnu.lax/liblgnu.a/printf-args.o .libs/libgnu.lax/liblgnu.a/printf-parse.o .libs/libgnu.lax/liblgnu.a/read-file.o .libs/libgnu.lax/liblgnu.a/vasnprintf.o
ranlib .libs/libgnu.a
rm -fr .libs/libgnu.lax
creating libgnu.la
(cd .libs && rm -f libgnu.la && ln -s ../libgnu.la libgnu.la)
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/gl'
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/gl'
Making all in includes
make[3]: Entering directory `/build/user/gnutls13-2.0.4/includes'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/includes'
Making all in lib
make[3]: Entering directory `/build/user/gnutls13-2.0.4/lib'
Making all in x509
make[4]: Entering directory `/build/user/gnutls13-2.0.4/lib/x509'
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o crl.lo crl.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c crl.c -fPIC -DPIC -o .libs/crl.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o dn.lo dn.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c dn.c -fPIC -DPIC -o .libs/dn.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o common.lo common.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c common.c -fPIC -DPIC -o .libs/common.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o x509.lo x509.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c x509.c -fPIC -DPIC -o .libs/x509.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o extensions.lo extensions.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c extensions.c -fPIC -DPIC -o .libs/extensions.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o dsa.lo dsa.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c dsa.c -fPIC -DPIC -o .libs/dsa.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o rfc2818_hostname.lo rfc2818_hostname.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c rfc2818_hostname.c -fPIC -DPIC -o .libs/rfc2818_hostname.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o verify.lo verify.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c verify.c -fPIC -DPIC -o .libs/verify.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o mpi.lo mpi.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c mpi.c -fPIC -DPIC -o .libs/mpi.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o privkey.lo privkey.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c privkey.c -fPIC -DPIC -o .libs/privkey.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pkcs7.lo pkcs7.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pkcs7.c -fPIC -DPIC -o .libs/pkcs7.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o crq.lo crq.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c crq.c -fPIC -DPIC -o .libs/crq.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o xml.lo xml.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c xml.c -fPIC -DPIC -o .libs/xml.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o sign.lo sign.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c sign.c -fPIC -DPIC -o .libs/sign.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o privkey_pkcs8.lo privkey_pkcs8.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c privkey_pkcs8.c -fPIC -DPIC -o .libs/privkey_pkcs8.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pkcs12.lo pkcs12.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pkcs12.c -fPIC -DPIC -o .libs/pkcs12.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pkcs12_bag.lo pkcs12_bag.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pkcs12_bag.c -fPIC -DPIC -o .libs/pkcs12_bag.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pkcs12_encr.lo pkcs12_encr.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pkcs12_encr.c -fPIC -DPIC -o .libs/pkcs12_encr.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o x509_write.lo x509_write.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c x509_write.c -fPIC -DPIC -o .libs/x509_write.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o crl_write.lo crl_write.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c crl_write.c -fPIC -DPIC -o .libs/crl_write.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o output.lo output.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../libextra -I../../lib/minitasn1 -I../../libextra/openpgp/ -I../../libextra/opencdk -I../../lib -I../../includes -I../../includes -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c output.c -fPIC -DPIC -o .libs/output.o
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o libgnutls_x509.la crl.lo dn.lo common.lo x509.lo extensions.lo dsa.lo rfc2818_hostname.lo verify.lo mpi.lo privkey.lo pkcs7.lo crq.lo xml.lo sign.lo privkey_pkcs8.lo pkcs12.lo pkcs12_bag.lo pkcs12_encr.lo x509_write.lo crl_write.lo output.lo
ar cru .libs/libgnutls_x509.a .libs/crl.o .libs/dn.o .libs/common.o .libs/x509.o .libs/extensions.o .libs/dsa.o .libs/rfc2818_hostname.o .libs/verify.o .libs/mpi.o .libs/privkey.o .libs/pkcs7.o .libs/crq.o .libs/xml.o .libs/sign.o .libs/privkey_pkcs8.o .libs/pkcs12.o .libs/pkcs12_bag.o .libs/pkcs12_encr.o .libs/x509_write.o .libs/crl_write.o .libs/output.o
ranlib .libs/libgnutls_x509.a
creating libgnutls_x509.la
(cd .libs && rm -f libgnutls_x509.la && ln -s ../libgnutls_x509.la libgnutls_x509.la)
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/lib/x509'
make[4]: Entering directory `/build/user/gnutls13-2.0.4/lib'
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_record.lo gnutls_record.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_record.c -fPIC -DPIC -o .libs/gnutls_record.o
gnutls_record.c:1239:2: warning: no newline at end of file
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_compress.lo gnutls_compress.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_compress.c -fPIC -DPIC -o .libs/gnutls_compress.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o debug.lo debug.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c debug.c -fPIC -DPIC -o .libs/debug.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_cipher.lo gnutls_cipher.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_cipher.c -fPIC -DPIC -o .libs/gnutls_cipher.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_buffers.lo gnutls_buffers.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_buffers.c -fPIC -DPIC -o .libs/gnutls_buffers.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_handshake.lo gnutls_handshake.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_handshake.c -fPIC -DPIC -o .libs/gnutls_handshake.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_num.lo gnutls_num.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_num.c -fPIC -DPIC -o .libs/gnutls_num.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_errors.lo gnutls_errors.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_errors.c -fPIC -DPIC -o .libs/gnutls_errors.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_algorithms.lo gnutls_algorithms.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_algorithms.c -fPIC -DPIC -o .libs/gnutls_algorithms.o
gnutls_algorithms.c:593: warning: C99 inline functions are not supported; using GNU89
gnutls_algorithms.c:593: warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute
gnutls_algorithms.c:682: warning: C99 inline functions are not supported; using GNU89
gnutls_algorithms.c:810: warning: C99 inline functions are not supported; using GNU89
gnutls_algorithms.c:931: warning: C99 inline functions are not supported; using GNU89
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_dh.lo gnutls_dh.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_dh.c -fPIC -DPIC -o .libs/gnutls_dh.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_kx.lo gnutls_kx.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_kx.c -fPIC -DPIC -o .libs/gnutls_kx.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_priority.lo gnutls_priority.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_priority.c -fPIC -DPIC -o .libs/gnutls_priority.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_hash_int.lo gnutls_hash_int.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_hash_int.c -fPIC -DPIC -o .libs/gnutls_hash_int.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_cipher_int.lo gnutls_cipher_int.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_cipher_int.c -fPIC -DPIC -o .libs/gnutls_cipher_int.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_compress_int.lo gnutls_compress_int.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_compress_int.c -fPIC -DPIC -o .libs/gnutls_compress_int.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_session.lo gnutls_session.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_session.c -fPIC -DPIC -o .libs/gnutls_session.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_db.lo gnutls_db.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_db.c -fPIC -DPIC -o .libs/gnutls_db.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o x509_b64.lo x509_b64.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c x509_b64.c -fPIC -DPIC -o .libs/x509_b64.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_anon.lo auth_anon.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_anon.c -fPIC -DPIC -o .libs/auth_anon.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_extensions.lo gnutls_extensions.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_extensions.c -fPIC -DPIC -o .libs/gnutls_extensions.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_auth.lo gnutls_auth.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_auth.c -fPIC -DPIC -o .libs/gnutls_auth.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_v2_compat.lo gnutls_v2_compat.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_v2_compat.c -fPIC -DPIC -o .libs/gnutls_v2_compat.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_datum.lo gnutls_datum.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_datum.c -fPIC -DPIC -o .libs/gnutls_datum.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_rsa.lo auth_rsa.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_rsa.c -fPIC -DPIC -o .libs/auth_rsa.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_session_pack.lo gnutls_session_pack.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_session_pack.c -fPIC -DPIC -o .libs/gnutls_session_pack.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_mpi.lo gnutls_mpi.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_mpi.c -fPIC -DPIC -o .libs/gnutls_mpi.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_pk.lo gnutls_pk.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_pk.c -fPIC -DPIC -o .libs/gnutls_pk.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_cert.lo gnutls_cert.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_cert.c -fPIC -DPIC -o .libs/gnutls_cert.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_global.lo gnutls_global.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_global.c -fPIC -DPIC -o .libs/gnutls_global.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_constate.lo gnutls_constate.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_constate.c -fPIC -DPIC -o .libs/gnutls_constate.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_anon_cred.lo gnutls_anon_cred.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_anon_cred.c -fPIC -DPIC -o .libs/gnutls_anon_cred.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pkix_asn1_tab.lo pkix_asn1_tab.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pkix_asn1_tab.c -fPIC -DPIC -o .libs/pkix_asn1_tab.o
pkix_asn1_tab.c:7: warning: 'pkix_asn1_tab' initialized and declared 'extern'
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_asn1_tab.lo gnutls_asn1_tab.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_asn1_tab.c -fPIC -DPIC -o .libs/gnutls_asn1_tab.o
gnutls_asn1_tab.c:7: warning: 'gnutls_asn1_tab' initialized and declared 'extern'
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_mem.lo gnutls_mem.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_mem.c -fPIC -DPIC -o .libs/gnutls_mem.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_cert.lo auth_cert.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_cert.c -fPIC -DPIC -o .libs/auth_cert.o
auth_cert.c: In function '_gnutls_proc_cert_cert_req':
auth_cert.c:196: warning: 'odn.size' may be used uninitialized in this function
auth_cert.c:196: note: 'odn.size' was declared here
auth_cert.c:196: warning: 'odn.data' may be used uninitialized in this function
auth_cert.c:196: note: 'odn.data' was declared here
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_ui.lo gnutls_ui.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_ui.c -fPIC -DPIC -o .libs/gnutls_ui.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_sig.lo gnutls_sig.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_sig.c -fPIC -DPIC -o .libs/gnutls_sig.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_dhe.lo auth_dhe.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_dhe.c -fPIC -DPIC -o .libs/auth_dhe.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_dh_primes.lo gnutls_dh_primes.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_dh_primes.c -fPIC -DPIC -o .libs/gnutls_dh_primes.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ext_max_record.lo ext_max_record.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ext_max_record.c -fPIC -DPIC -o .libs/ext_max_record.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_alert.lo gnutls_alert.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_alert.c -fPIC -DPIC -o .libs/gnutls_alert.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_str.lo gnutls_str.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_str.c -fPIC -DPIC -o .libs/gnutls_str.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_state.lo gnutls_state.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_state.c -fPIC -DPIC -o .libs/gnutls_state.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_x509.lo gnutls_x509.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_x509.c -fPIC -DPIC -o .libs/gnutls_x509.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ext_cert_type.lo ext_cert_type.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ext_cert_type.c -fPIC -DPIC -o .libs/ext_cert_type.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_rsa_export.lo gnutls_rsa_export.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_rsa_export.c -fPIC -DPIC -o .libs/gnutls_rsa_export.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_rsa_export.lo auth_rsa_export.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_rsa_export.c -fPIC -DPIC -o .libs/auth_rsa_export.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ext_server_name.lo ext_server_name.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ext_server_name.c -fPIC -DPIC -o .libs/ext_server_name.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_dh_common.lo auth_dh_common.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_dh_common.c -fPIC -DPIC -o .libs/auth_dh_common.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_helper.lo gnutls_helper.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_helper.c -fPIC -DPIC -o .libs/gnutls_helper.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ext_inner_application.lo ext_inner_application.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ext_inner_application.c -fPIC -DPIC -o .libs/ext_inner_application.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_extra_hooks.lo gnutls_extra_hooks.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_extra_hooks.c -fPIC -DPIC -o .libs/gnutls_extra_hooks.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_supplemental.lo gnutls_supplemental.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_supplemental.c -fPIC -DPIC -o .libs/gnutls_supplemental.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ext_authz.lo ext_authz.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ext_authz.c -fPIC -DPIC -o .libs/ext_authz.o
ext_authz.c: In function 'gnutls_authz_enable':
ext_authz.c:80: warning: 'return' with a value, in function returning void
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ext_srp.lo ext_srp.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ext_srp.c -fPIC -DPIC -o .libs/ext_srp.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_srp.lo gnutls_srp.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_srp.c -fPIC -DPIC -o .libs/gnutls_srp.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_srp.lo auth_srp.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_srp.c -fPIC -DPIC -o .libs/auth_srp.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_srp_passwd.lo auth_srp_passwd.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_srp_passwd.c -fPIC -DPIC -o .libs/auth_srp_passwd.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_srp_sb64.lo auth_srp_sb64.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_srp_sb64.c -fPIC -DPIC -o .libs/auth_srp_sb64.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_srp_rsa.lo auth_srp_rsa.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_srp_rsa.c -fPIC -DPIC -o .libs/auth_srp_rsa.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_psk.lo auth_psk.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_psk.c -fPIC -DPIC -o .libs/auth_psk.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_psk_passwd.lo auth_psk_passwd.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_psk_passwd.c -fPIC -DPIC -o .libs/auth_psk_passwd.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_psk.lo gnutls_psk.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_psk.c -fPIC -DPIC -o .libs/gnutls_psk.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o auth_dhe_psk.lo auth_dhe_psk.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c auth_dhe_psk.c -fPIC -DPIC -o .libs/auth_dhe_psk.o
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-undefined -version-info 22:1:9 -Wl,--version-script=./libgnutls.vers -L/usr/lib -ltasn1 -o libgnutls.la -rpath /usr/lib gnutls_record.lo gnutls_compress.lo debug.lo gnutls_cipher.lo gnutls_buffers.lo gnutls_handshake.lo gnutls_num.lo gnutls_errors.lo gnutls_algorithms.lo gnutls_dh.lo gnutls_kx.lo gnutls_priority.lo gnutls_hash_int.lo gnutls_cipher_int.lo gnutls_compress_int.lo gnutls_session.lo gnutls_db.lo x509_b64.lo auth_anon.lo gnutls_extensions.lo gnutls_auth.lo gnutls_v2_compat.lo gnutls_datum.lo auth_rsa.lo gnutls_session_pack.lo gnutls_mpi.lo gnutls_pk.lo gnutls_cert.lo gnutls_global.lo gnutls_constate.lo gnutls_anon_cred.lo pkix_asn1_tab.lo gnutls_asn1_tab.lo gnutls_mem.lo auth_cert.lo gnutls_ui.lo gnutls_sig.lo auth_dhe.lo gnutls_dh_primes.lo ext_max_record.lo gnutls_alert.lo gnutls_str.lo gnutls_state.lo gnutls_x509.lo ext_cert_type.lo gnutls_rsa_export.lo auth_rsa_export.lo ext_server_name.lo auth_dh_common.lo gnutls_helper.lo ext_inner_application.lo gnutls_extra_hooks.lo gnutls_supplemental.lo ext_authz.lo ext_srp.lo gnutls_srp.lo auth_srp.lo auth_srp_passwd.lo auth_srp_sb64.lo auth_srp_rsa.lo auth_psk.lo auth_psk_passwd.lo gnutls_psk.lo auth_dhe_psk.lo ../lgl/liblgnu.la x509/libgnutls_x509.la -L/usr/lib -lz -lgcrypt
cc -std=gnu99 -shared .libs/gnutls_record.o .libs/gnutls_compress.o .libs/debug.o .libs/gnutls_cipher.o .libs/gnutls_buffers.o .libs/gnutls_handshake.o .libs/gnutls_num.o .libs/gnutls_errors.o .libs/gnutls_algorithms.o .libs/gnutls_dh.o .libs/gnutls_kx.o .libs/gnutls_priority.o .libs/gnutls_hash_int.o .libs/gnutls_cipher_int.o .libs/gnutls_compress_int.o .libs/gnutls_session.o .libs/gnutls_db.o .libs/x509_b64.o .libs/auth_anon.o .libs/gnutls_extensions.o .libs/gnutls_auth.o .libs/gnutls_v2_compat.o .libs/gnutls_datum.o .libs/auth_rsa.o .libs/gnutls_session_pack.o .libs/gnutls_mpi.o .libs/gnutls_pk.o .libs/gnutls_cert.o .libs/gnutls_global.o .libs/gnutls_constate.o .libs/gnutls_anon_cred.o .libs/pkix_asn1_tab.o .libs/gnutls_asn1_tab.o .libs/gnutls_mem.o .libs/auth_cert.o .libs/gnutls_ui.o .libs/gnutls_sig.o .libs/auth_dhe.o .libs/gnutls_dh_primes.o .libs/ext_max_record.o .libs/gnutls_alert.o .libs/gnutls_str.o .libs/gnutls_state.o .libs/gnutls_x509.o .libs/ext_cert_type.o .libs/gnutls_rsa_export.o .libs/auth_rsa_export.o .libs/ext_server_name.o .libs/auth_dh_common.o .libs/gnutls_helper.o .libs/ext_inner_application.o .libs/gnutls_extra_hooks.o .libs/gnutls_supplemental.o .libs/ext_authz.o .libs/ext_srp.o .libs/gnutls_srp.o .libs/auth_srp.o .libs/auth_srp_passwd.o .libs/auth_srp_sb64.o .libs/auth_srp_rsa.o .libs/auth_psk.o .libs/auth_psk_passwd.o .libs/gnutls_psk.o .libs/auth_dhe_psk.o -Wl,--whole-archive ../lgl/.libs/liblgnu.a x509/.libs/libgnutls_x509.a -Wl,--no-whole-archive -L/usr/lib /usr/lib/libtasn1.so /usr/lib/libgpg-error.so -lz /usr/lib/libgcrypt.so -Wl,--version-script=./libgnutls.vers -Wl,-soname -Wl,libgnutls.so.13 -o .libs/libgnutls.so.13.9.1
(cd .libs && rm -f libgnutls.so.13 && ln -s libgnutls.so.13.9.1 libgnutls.so.13)
(cd .libs && rm -f libgnutls.so && ln -s libgnutls.so.13.9.1 libgnutls.so)
creating libgnutls.la
(cd .libs && rm -f libgnutls.la && ln -s ../libgnutls.la libgnutls.la)
/bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -I../includes/ -g -Wall -O2 -c -o gnutlsxx.lo gnutlsxx.cpp
g++ -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/share/locale\" -I../lgl -I../lgl -I../includes -I../includes -I./x509 -I../libextra -I../libextra/openpgp/ -I../libextra/opencdk -I/usr/include -I../includes/ -g -Wall -O2 -c gnutlsxx.cpp -fPIC -DPIC -o .libs/gnutlsxx.o
/bin/sh ../libtool --tag=CXX --mode=link g++ -I../includes/ -g -Wall -O2 -no-undefined -version-info 22:1:9 -Wl,--version-script=./libgnutlsxx.vers -o libgnutlsxx.la -rpath /usr/lib gnutlsxx.lo libgnutls.la
g++ -shared -nostdlib /usr/lib/gcc/i486-linux-gnu/4.2.3/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.2.3/crtbeginS.o .libs/gnutlsxx.o -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs ./.libs/libgnutls.so -L/usr/lib/gcc/i486-linux-gnu/4.2.3 -L/usr/lib/gcc/i486-linux-gnu/4.2.3/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.2.3/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/i486-linux-gnu/4.2.3/crtendS.o /usr/lib/gcc/i486-linux-gnu/4.2.3/../../../../lib/crtn.o -Wl,--version-script=./libgnutlsxx.vers -Wl,-soname -Wl,libgnutlsxx.so.13 -o .libs/libgnutlsxx.so.13.9.1
(cd .libs && rm -f libgnutlsxx.so.13 && ln -s libgnutlsxx.so.13.9.1 libgnutlsxx.so.13)
(cd .libs && rm -f libgnutlsxx.so && ln -s libgnutlsxx.so.13.9.1 libgnutlsxx.so)
creating libgnutlsxx.la
(cd .libs && rm -f libgnutlsxx.la && ln -s ../libgnutlsxx.la libgnutlsxx.la)
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/lib'
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/lib'
Making all in libextra
make[3]: Entering directory `/build/user/gnutls13-2.0.4/libextra'
Making all in openpgp
make[4]: Entering directory `/build/user/gnutls13-2.0.4/libextra/openpgp'
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pgp.lo pgp.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pgp.c -fPIC -DPIC -o .libs/pgp.o
pgp.c: In function 'gnutls_openpgp_key_check_hostname':
pgp.c:499: warning: 'ret' is used uninitialized in this function
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o xml.lo xml.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c xml.c -fPIC -DPIC -o .libs/xml.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o pgpverify.lo pgpverify.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c pgpverify.c -fPIC -DPIC -o .libs/pgpverify.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o extras.lo extras.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c extras.c -fPIC -DPIC -o .libs/extras.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o compat.lo compat.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c compat.c -fPIC -DPIC -o .libs/compat.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o privkey.lo privkey.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../lgl -I../../lgl -I../../crypto -I../../lib -I../../includes -I../../includes -I../../libextra/opencdk -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c privkey.c -fPIC -DPIC -o .libs/privkey.o
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o libgnutls_openpgp.la pgp.lo xml.lo pgpverify.lo extras.lo compat.lo privkey.lo
ar cru .libs/libgnutls_openpgp.a .libs/pgp.o .libs/xml.o .libs/pgpverify.o .libs/extras.o .libs/compat.o .libs/privkey.o
ranlib .libs/libgnutls_openpgp.a
creating libgnutls_openpgp.la
(cd .libs && rm -f libgnutls_openpgp.la && ln -s ../libgnutls_openpgp.la libgnutls_openpgp.la)
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/libextra/openpgp'
make[4]: Entering directory `/build/user/gnutls13-2.0.4/libextra'
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_extra.lo gnutls_extra.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_extra.c -fPIC -DPIC -o .libs/gnutls_extra.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_openpgp.lo gnutls_openpgp.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_openpgp.c -fPIC -DPIC -o .libs/gnutls_openpgp.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_ia.lo gnutls_ia.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_ia.c -fPIC -DPIC -o .libs/gnutls_ia.o
gnutls_ia.c: In function 'gnutls_ia_recv':
gnutls_ia.c:441: warning: 'msg_type' may be used uninitialized in this function
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-undefined -L/usr/lib -lopencdk -L/usr/lib -lgcrypt -L/usr/lib -lgpg-error -L/usr/lib -lnsl -L/usr/lib -lz -version-info 22:1:9 -llzo2 -Wl,--version-script=./libgnutls-extra.vers -o libgnutls-extra.la -rpath /usr/lib gnutls_extra.lo gnutls_openpgp.lo gnutls_ia.lo openpgp/libgnutls_openpgp.la ../lgl/liblgnu.la ../lib/libgnutls.la
cc -std=gnu99 -shared .libs/gnutls_extra.o .libs/gnutls_openpgp.o .libs/gnutls_ia.o -Wl,--whole-archive openpgp/.libs/libgnutls_openpgp.a ../lgl/.libs/liblgnu.a -Wl,--no-whole-archive -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -L/usr/lib /usr/lib/libopencdk.so -lnsl -lz /usr/lib/liblzo2.so /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../lib/.libs/libgnutls.so -Wl,--version-script=./libgnutls-extra.vers -Wl,-soname -Wl,libgnutls-extra.so.13 -o .libs/libgnutls-extra.so.13.9.1
(cd .libs && rm -f libgnutls-extra.so.13 && ln -s libgnutls-extra.so.13.9.1 libgnutls-extra.so.13)
(cd .libs && rm -f libgnutls-extra.so && ln -s libgnutls-extra.so.13.9.1 libgnutls-extra.so)
creating libgnutls-extra.la
(cd .libs && rm -f libgnutls-extra.la && ln -s ../libgnutls-extra.la libgnutls-extra.la)
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o gnutls_openssl.lo gnutls_openssl.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c gnutls_openssl.c -fPIC -DPIC -o .libs/gnutls_openssl.o
/bin/sh ../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o openssl_compat.lo openssl_compat.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../lgl -I../lgl -I../lib -I../includes -I../includes -I../lib/minitasn1 -I./openpgp -I/usr/include -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c openssl_compat.c -fPIC -DPIC -o .libs/openssl_compat.o
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-undefined -version-info 22:1:9 -L/usr/lib -ltasn1 -o libgnutls-openssl.la -rpath /usr/lib gnutls_openssl.lo openssl_compat.lo ../lgl/liblgnu.la ../lib/libgnutls.la
cc -std=gnu99 -shared .libs/gnutls_openssl.o .libs/openssl_compat.o -Wl,--whole-archive ../lgl/.libs/liblgnu.a -Wl,--no-whole-archive -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -L/usr/lib /usr/lib/libtasn1.so /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../lib/.libs/libgnutls.so -Wl,-soname -Wl,libgnutls-openssl.so.13 -o .libs/libgnutls-openssl.so.13.9.1
(cd .libs && rm -f libgnutls-openssl.so.13 && ln -s libgnutls-openssl.so.13.9.1 libgnutls-openssl.so.13)
(cd .libs && rm -f libgnutls-openssl.so && ln -s libgnutls-openssl.so.13.9.1 libgnutls-openssl.so)
creating libgnutls-openssl.la
(cd .libs && rm -f libgnutls-openssl.la && ln -s ../libgnutls-openssl.la libgnutls-openssl.la)
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/libextra'
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/libextra'
Making all in src
make[3]: Entering directory `/build/user/gnutls13-2.0.4/src'
Making all in cfg
make[4]: Entering directory `/build/user/gnutls13-2.0.4/src/cfg'
Making all in platon
make[5]: Entering directory `/build/user/gnutls13-2.0.4/src/cfg/platon'
Making all in str
make[6]: Entering directory `/build/user/gnutls13-2.0.4/src/cfg/platon/str'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/user/gnutls13-2.0.4/src/cfg/platon/str'
make[6]: Entering directory `/build/user/gnutls13-2.0.4/src/cfg/platon'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/build/user/gnutls13-2.0.4/src/cfg/platon'
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/src/cfg/platon'
make[5]: Entering directory `/build/user/gnutls13-2.0.4/src/cfg'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/src/cfg'
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/src/cfg'
make[4]: Entering directory `/build/user/gnutls13-2.0.4/src'
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c serv-gaa.c
gaa.skel:326: warning: 'gaa_getchar' defined but not used
gaa.skel:340: warning: 'gaa_getfloat' defined but not used
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c serv.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c common.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c select.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o gnutls-serv serv-gaa.o serv.o common.o select.o ../lib/libgnutls.la ../libextra/libgnutls-extra.la -lgcrypt -L/usr/lib -ltasn1 ../gl/libgnu.la
mkdir .libs
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/gnutls-serv serv-gaa.o serv.o common.o select.o ../lib/.libs/libgnutls.so ../libextra/.libs/libgnutls-extra.so -L/usr/lib /usr/lib/libtasn1.so ../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so
creating gnutls-serv
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c cli-gaa.c
gaa.skel:326: warning: 'gaa_getchar' defined but not used
gaa.skel:340: warning: 'gaa_getfloat' defined but not used
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c cli.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o gnutls-cli cli-gaa.o cli.o common.o select.o ../lib/libgnutls.la ../libextra/libgnutls-extra.la -lgcrypt -L/usr/lib -ltasn1 ../gl/libgnu.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/gnutls-cli cli-gaa.o cli.o common.o select.o ../lib/.libs/libgnutls.so ../libextra/.libs/libgnutls-extra.so -L/usr/lib /usr/lib/libtasn1.so ../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so
creating gnutls-cli
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c psk-gaa.c
psk.gaa: In function 'gaa':
psk.gaa:28: warning: assignment makes integer from pointer without a cast
gaa.skel: At top level:
gaa.skel:326: warning: 'gaa_getchar' defined but not used
gaa.skel:340: warning: 'gaa_getfloat' defined but not used
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c psk.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o psktool psk-gaa.o psk.o ../lib/libgnutls.la ../libextra/libgnutls-extra.la -lgcrypt -L/usr/lib -ltasn1 ../gl/libgnu.la ../lgl/liblgnu.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/psktool psk-gaa.o psk.o ../lib/.libs/libgnutls.so ../libextra/.libs/libgnutls-extra.so -L/usr/lib /usr/lib/libtasn1.so ../gl/.libs/libgnu.a ../lgl/.libs/liblgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so
creating psktool
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c tls_test-gaa.c
gaa.skel:326: warning: 'gaa_getchar' defined but not used
gaa.skel:340: warning: 'gaa_getfloat' defined but not used
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c tls_test.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c tests.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o gnutls-cli-debug tls_test-gaa.o tls_test.o tests.o common.o ../lib/libgnutls.la ../libextra/libgnutls-extra.la -lgcrypt -L/usr/lib -ltasn1 ../gl/libgnu.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/gnutls-cli-debug tls_test-gaa.o tls_test.o tests.o common.o ../lib/.libs/libgnutls.so ../libextra/.libs/libgnutls-extra.so -L/usr/lib /usr/lib/libtasn1.so ../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so
creating gnutls-cli-debug
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c certtool-gaa.c
gaa.skel:326: warning: 'gaa_getchar' defined but not used
gaa.skel:340: warning: 'gaa_getfloat' defined but not used
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c certtool.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c prime.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c certtool-cfg.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o cfg+.o `test -f 'cfg/cfg+.c' || echo './'`cfg/cfg+.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o cfgfile.o `test -f 'cfg/cfgfile.c' || echo './'`cfg/cfgfile.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o cmdline.o `test -f 'cfg/cmdline.c' || echo './'`cfg/cmdline.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o parse.o `test -f 'cfg/parse.c' || echo './'`cfg/parse.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o props.o `test -f 'cfg/props.c' || echo './'`cfg/props.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o shared.o `test -f 'cfg/shared.c' || echo './'`cfg/shared.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o dynfgets.o `test -f 'cfg/platon/str/dynfgets.c' || echo './'`cfg/platon/str/dynfgets.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o strctype.o `test -f 'cfg/platon/str/strctype.c' || echo './'`cfg/platon/str/strctype.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o strdyn.o `test -f 'cfg/platon/str/strdyn.c' || echo './'`cfg/platon/str/strdyn.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o strplus.o `test -f 'cfg/platon/str/strplus.c' || echo './'`cfg/platon/str/strplus.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o certtool certtool-gaa.o certtool.o prime.o certtool-cfg.o cfg+.o cfgfile.o cmdline.o parse.o props.o shared.o dynfgets.o strctype.o strdyn.o strplus.o ../lib/libgnutls.la -lgcrypt -L/usr/lib -ltasn1 ../gl/libgnu.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/certtool certtool-gaa.o certtool.o prime.o certtool-cfg.o cfg+.o cfgfile.o cmdline.o parse.o props.o shared.o dynfgets.o strctype.o strdyn.o strplus.o ../lib/.libs/libgnutls.so -L/usr/lib /usr/lib/libtasn1.so ../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so
creating certtool
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c crypt-gaa.c
gaa.skel:326: warning: 'gaa_getchar' defined but not used
gaa.skel:340: warning: 'gaa_getfloat' defined but not used
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c crypt.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o srptool crypt-gaa.o crypt.o ../lib/libgnutls.la ../libextra/libgnutls-extra.la -lgcrypt -L/usr/lib -ltasn1 ../gl/libgnu.la ../lgl/liblgnu.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/srptool crypt-gaa.o crypt.o ../lib/.libs/libgnutls.so ../libextra/.libs/libgnutls-extra.so -L/usr/lib /usr/lib/libtasn1.so ../gl/.libs/libgnu.a ../lgl/.libs/liblgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so
creating srptool
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -I../includes -I../includes -I../lgl -I../lgl -I../gl -I../gl -I./cfg -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c errcodes.c
/bin/sh ../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o errcodes errcodes.o ../lib/libgnutls.la -lgcrypt -L/usr/lib -ltasn1
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o .libs/errcodes errcodes.o ../lib/.libs/libgnutls.so /usr/lib/libgcrypt.so -L/usr/lib /usr/lib/libtasn1.so
creating errcodes
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/src'
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/src'
Making all in doc
make[3]: Entering directory `/build/user/gnutls13-2.0.4/doc'
/usr/bin/make all-recursive
make[4]: Entering directory `/build/user/gnutls13-2.0.4/doc'
Making all in examples
make[5]: Entering directory `/build/user/gnutls13-2.0.4/doc/examples'
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ex-alert.lo ex-alert.c
mkdir .libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-alert.c -fPIC -DPIC -o .libs/ex-alert.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ex-pkcs12.lo ex-pkcs12.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-pkcs12.c -fPIC -DPIC -o .libs/ex-pkcs12.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ex-rfc2818.lo ex-rfc2818.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-rfc2818.c -fPIC -DPIC -o .libs/ex-rfc2818.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ex-session-info.lo ex-session-info.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-session-info.c -fPIC -DPIC -o .libs/ex-session-info.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ex-x509-info.lo ex-x509-info.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-x509-info.c -fPIC -DPIC -o .libs/ex-x509-info.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o ex-verify.lo ex-verify.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-verify.c -fPIC -DPIC -o .libs/ex-verify.o
/bin/sh ../../libtool --tag=CC --mode=compile cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c -o tcp.lo tcp.c
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c tcp.c -fPIC -DPIC -o .libs/tcp.o
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o libexamples.la ex-alert.lo ex-pkcs12.lo ex-rfc2818.lo ex-session-info.lo ex-x509-info.lo ex-verify.lo tcp.lo
ar cru .libs/libexamples.a .libs/ex-alert.o .libs/ex-pkcs12.o .libs/ex-rfc2818.o .libs/ex-session-info.o .libs/ex-x509-info.o .libs/ex-verify.o .libs/tcp.o
ranlib .libs/libexamples.a
creating libexamples.la
(cd .libs && rm -f libexamples.la && ln -s ../libexamples.la libexamples.la)
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-cert-select.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-cert-select ex-cert-select.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-cert-select ex-cert-select.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-client2.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-client2 ex-client2.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-client2 ex-client2.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-client-resume.c
ex-client-resume.c: In function 'main':
ex-client-resume.c:33: warning: 'session_data' may be used uninitialized in this function
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-client-resume ex-client-resume.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-client-resume ex-client-resume.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-crq.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-crq ex-crq.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-crq ex-crq.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-serv1.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-serv1 ex-serv1.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-serv1 ex-serv1.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-serv-export.c
ex-serv-export.c:268: warning: 'wrap_db_deinit' defined but not used
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-serv-export ex-serv-export.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-serv-export ex-serv-export.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-client1.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-client1 ex-client1.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-client1 ex-client1.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-serv-anon.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-serv-anon ex-serv-anon.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-serv-anon ex-serv-anon.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-client-tlsia.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-client-tlsia ex-client-tlsia.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-client-tlsia ex-client-tlsia.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-serv-pgp.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-serv-pgp ex-serv-pgp.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-serv-pgp ex-serv-pgp.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-client-srp.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-client-srp ex-client-srp.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-client-srp ex-client-srp.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I../../includes -I../../includes -I../../lgl -I../../lgl -I../../gl -I../../gl -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -c ex-serv-srp.c
/bin/sh ../../libtool --tag=CC --mode=link cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -no-install -o ex-serv-srp ex-serv-srp.o libexamples.la ../../gl/libgnu.la ../../lib/libgnutls.la ../../libextra/libgnutls-extra.la
cc -std=gnu99 -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -pipe -g -Wall -O2 -D_REENTRANT -D_THREAD_SAFE -Wno-pointer-sign -o ex-serv-srp ex-serv-srp.o ./.libs/libexamples.a ../../gl/.libs/libgnu.a /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so ../../lib/.libs/libgnutls.so ../../libextra/.libs/libgnutls-extra.so -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/lib/.libs -Wl,--rpath -Wl,/build/user/gnutls13-2.0.4/libextra/.libs
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/doc/examples'
Making all in scripts
make[5]: Entering directory `/build/user/gnutls13-2.0.4/doc/scripts'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/doc/scripts'
Making all in manpages
make[5]: Entering directory `/build/user/gnutls13-2.0.4/doc/manpages'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/doc/manpages'
Making all in credentials
make[5]: Entering directory `/build/user/gnutls13-2.0.4/doc/credentials'
Making all in openpgp
make[6]: Entering directory `/build/user/gnutls13-2.0.4/doc/credentials/openpgp'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/user/gnutls13-2.0.4/doc/credentials/openpgp'
Making all in srp
make[6]: Entering directory `/build/user/gnutls13-2.0.4/doc/credentials/srp'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/user/gnutls13-2.0.4/doc/credentials/srp'
Making all in x509
make[6]: Entering directory `/build/user/gnutls13-2.0.4/doc/credentials/x509'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/user/gnutls13-2.0.4/doc/credentials/x509'
make[6]: Entering directory `/build/user/gnutls13-2.0.4/doc/credentials'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/build/user/gnutls13-2.0.4/doc/credentials'
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/doc/credentials'
make[5]: Entering directory `/build/user/gnutls13-2.0.4/doc'
restore=: && backupdir=".am$$" && \
am__cwd=`pwd` && cd . && \
rm -rf $backupdir && mkdir $backupdir && \
if (/bin/sh /build/user/gnutls13-2.0.4/build-aux/missing --run makeinfo --version) >/dev/null 2>&1; then \
for f in gnutls.info gnutls.info-[0-9] gnutls.info-[0-9][0-9] gnutls.i[0-9] gnutls.i[0-9][0-9]; do \
if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
else :; fi && \
cd "$am__cwd"; \
if /bin/sh /build/user/gnutls13-2.0.4/build-aux/missing --run makeinfo -I ../doc -I . \
-o gnutls.info gnutls.texi; \
then \
rc=0; \
cd .; \
else \
rc=$?; \
cd . && \
$restore $backupdir/* `echo "./gnutls.info" | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
/build/user/gnutls13-2.0.4/build-aux/missing: line 54: makeinfo: command not found
WARNING: `makeinfo' is missing on your system. You should only need it if
you modified a `.texi' or `.texinfo' file, or any other file
indirectly affecting the aspect of the manual. The spurious
call might also be the consequence of using a buggy `make' (AIX,
DU, IRIX). You might want to install the `Texinfo' package or
the `GNU make' package. Grab either from any GNU archive site.
make[5]: *** [gnutls.info] Error 1
make[5]: Leaving directory `/build/user/gnutls13-2.0.4/doc'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/build/user/gnutls13-2.0.4/doc'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/build/user/gnutls13-2.0.4/doc'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/gnutls13-2.0.4'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/gnutls13-2.0.4'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
******************************************************************************
Build finished at 20080213-0221
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid32-61559db8-71f5-4993-84e6-97001412e2d0/build/user/gnutls13-2.0.4
------------------------------------------------------------------------------
Not removing build depends: session managed chroot in use
******************************************************************************
Finished at 20080213-0221
Build needed 00:01:17, 38692k disk space
DC-Build-Status: Failed 92.901047s
|