viewing paste Unknown #15740 | Text

Posted on the
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
 
It was created by configure, which was
generated by GNU Autoconf 2.69.  Invocation command line was
 
  $ ./configure
 
## --------- ##
## Platform. ##
## --------- ##
 
hostname = murilo-G31T-M7
uname -m = i686
uname -r = 3.16.0-24-generic
uname -s = Linux
uname -v = #32-Ubuntu SMP Tue Oct 28 13:13:18 UTC 2014
 
/usr/bin/uname -p = unknown
/bin/uname -X     = unknown
 
/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown
 
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/games
 
 
## ----------- ##
## Core tests. ##
## ----------- ##
 
configure:2243: checking for gcc
configure:2259: found /usr/bin/gcc
configure:2270: result: gcc
configure:2499: checking for C compiler version
configure:2508: gcc --version >&5
gcc (Ubuntu 4.9.1-16ubuntu6) 4.9.1
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
configure:2519: $? = 0
configure:2508: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6)
configure:2519: $? = 0
configure:2508: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:2519: $? = 4
configure:2508: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:2519: $? = 4
configure:2539: checking whether the C compiler works
configure:2561: gcc    conftest.c  >&5
configure:2565: $? = 0
configure:2613: result: yes
configure:2616: checking for C compiler default output file name
configure:2618: result: a.out
configure:2624: checking for suffix of executables
configure:2631: gcc -o conftest    conftest.c  >&5
configure:2635: $? = 0
configure:2657: result:
configure:2679: checking whether we are cross compiling
configure:2687: gcc -o conftest    conftest.c  >&5
configure:2691: $? = 0
configure:2698: ./conftest
configure:2702: $? = 0
configure:2717: result: no
configure:2722: checking for suffix of object files
configure:2744: gcc -c   conftest.c >&5
configure:2748: $? = 0
configure:2769: result: o
configure:2773: checking whether we are using the GNU C compiler
configure:2792: gcc -c   conftest.c >&5
configure:2792: $? = 0
configure:2801: result: yes
configure:2810: checking whether gcc accepts -g
configure:2830: gcc -c -g  conftest.c >&5
configure:2830: $? = 0
configure:2871: result: yes
configure:2888: checking for gcc option to accept ISO C89
configure:2951: gcc  -c -g -O2  conftest.c >&5
configure:2951: $? = 0
configure:2964: result: none needed
configure:2990: checking how to run the C preprocessor
configure:3021: gcc -E  conftest.c
configure:3021: $? = 0
configure:3035: gcc -E  conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:3035: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3060: result: gcc -E
configure:3080: gcc -E  conftest.c
configure:3080: $? = 0
configure:3094: gcc -E  conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:3094: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3123: checking for grep that handles long lines and -e
configure:3181: result: /bin/grep
configure:3186: checking for egrep
configure:3248: result: /bin/grep -E
configure:3253: checking for ANSI C header files
configure:3273: gcc -c -g -O2  conftest.c >&5
configure:3273: $? = 0
configure:3346: gcc -o conftest -g -O2   conftest.c  >&5
configure:3346: $? = 0
configure:3346: ./conftest
configure:3346: $? = 0
configure:3357: result: yes
configure:3370: checking for sys/types.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for sys/stat.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for stdlib.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for string.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for memory.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for strings.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for inttypes.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for stdint.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3370: checking for unistd.h
configure:3370: gcc -c -g -O2  conftest.c >&5
configure:3370: $? = 0
configure:3370: result: yes
configure:3383: checking minix/config.h usability
configure:3383: gcc -c -g -O2  conftest.c >&5
conftest.c:52:26: fatal error: minix/config.h: No such file or directory
 #include <minix/config.h>
                          ^
compilation terminated.
configure:3383: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:3383: result: no
configure:3383: checking minix/config.h presence
configure:3383: gcc -E  conftest.c
conftest.c:19:26: fatal error: minix/config.h: No such file or directory
 #include <minix/config.h>
                          ^
compilation terminated.
configure:3383: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:3383: result: no
configure:3383: checking for minix/config.h
configure:3383: result: no
configure:3404: checking whether it is safe to define __EXTENSIONS__
configure:3422: gcc -c -g -O2  conftest.c >&5
configure:3422: $? = 0
configure:3429: result: yes
configure:3861: checking whether make sets $(MAKE)
configure:3883: result: yes
configure:3940: checking for gcc
configure:3967: result: gcc
configure:4196: checking for C compiler version
configure:4205: gcc --version >&5
gcc (Ubuntu 4.9.1-16ubuntu6) 4.9.1
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
configure:4216: $? = 0
configure:4205: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6)
configure:4216: $? = 0
configure:4205: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:4216: $? = 4
configure:4205: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:4216: $? = 4
configure:4220: checking whether we are using the GNU C compiler
configure:4248: result: yes
configure:4257: checking whether gcc accepts -g
configure:4318: result: yes
configure:4335: checking for gcc option to accept ISO C89
configure:4411: result: none needed
configure:4436: checking how to run the C preprocessor
configure:4506: result: gcc -E
configure:4526: gcc -E  -DMAXCONN=16384 conftest.c
configure:4526: $? = 0
configure:4540: gcc -E  -DMAXCONN=16384 conftest.c
conftest.c:24:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:4540: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4570: checking for ar
configure:4588: found /usr/bin/ar
configure:4600: result: /usr/bin/ar
configure:4620: checking whether byte ordering is bigendian
configure:4635: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare  -DMAXCONN=16384 -I../common conftest.c >&5
conftest.c:25:9: error: unknown type name 'not'
         not a universal capable compiler
         ^
conftest.c:25:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
         not a universal capable compiler
               ^
conftest.c:25:15: error: unknown type name 'universal'
configure:4635: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
|              not a universal capable compiler
|            #endif
|            typedef int dummy;
|
configure:4680: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare  -DMAXCONN=16384 -I../common conftest.c >&5
configure:4680: $? = 0
configure:4698: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare  -DMAXCONN=16384 -I../common conftest.c >&5
conftest.c: In function 'main':
conftest.c:31:4: error: unknown type name 'not'
    not big endian
    ^
conftest.c:31:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
    not big endian
            ^
configure:4698: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|               #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
|                not big endian
|               #endif
|
|   ;
|   return 0;
| }
configure:4826: result: no
configure:4895: checking whether gcc produces 32bit code
configure:4913: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare  -DMAXCONN=16384 -I../common  conftest.c  >&5
conftest.c: In function 'main':
conftest.c:25:16: warning: unused parameter 'argc' [-Wunused-parameter]
   int main(int argc, char **argv){
                ^
conftest.c:25:29: warning: unused parameter 'argv' [-Wunused-parameter]
   int main(int argc, char **argv){
                             ^
configure:4913: $? = 0
configure:4913: ./conftest
configure:4913: $? = 0
configure:4915: result: yes
configure:4917: checking whether gcc supports -march=i686 (and we can run it)
configure:4938: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686  -DMAXCONN=16384 -I../common  -march=i686 conftest.c  >&5
conftest.c: In function 'main':
conftest.c:25:18: warning: unused parameter 'argc' [-Wunused-parameter]
     int main(int argc, char **argv) { return 0; }
                  ^
conftest.c:25:31: warning: unused parameter 'argv' [-Wunused-parameter]
     int main(int argc, char **argv) { return 0; }
                               ^
configure:4938: $? = 0
configure:4938: ./conftest
configure:4938: $? = 0
configure:4940: result: yes
configure:4972: checking whether gcc supports __thread specifier (TLS)
configure:4991: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686  -DMAXCONN=16384 -I../common  -march=i686 conftest.c  >&5
conftest.c: In function 'main':
conftest.c:27:16: warning: unused parameter 'argc' [-Wunused-parameter]
   int main(int argc, char **argv){
                ^
conftest.c:27:29: warning: unused parameter 'argv' [-Wunused-parameter]
   int main(int argc, char **argv){
                             ^
configure:4991: $? = 0
configure:4991: ./conftest
configure:4991: $? = 0
configure:4993: result: yes
configure:5021: checking whether gcc supports -flto
configure:5038: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
conftest.c: In function 'main':
conftest.c:25:17: warning: unused parameter 'argc' [-Wunused-parameter]
    int main(int argc, char **argv){
                 ^
conftest.c:25:30: warning: unused parameter 'argv' [-Wunused-parameter]
    int main(int argc, char **argv){
                              ^
configure:5038: $? = 0
configure:5038: ./conftest
configure:5038: $? = 0
configure:5040: result: yes
configure:5111: checking whether gcc supports -Wno-unused-parameter
configure:5119: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Werror -Wno-unused-parameter  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5119: $? = 0
configure:5129: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Werror -Wunused-parameter  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5129: $? = 0
configure:5131: result: yes
configure:5136: checking whether gcc can actually use -Wno-unused-parameter
configure:5143: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Werror -Wunused-parameter  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
conftest.c: In function 'foo':
conftest.c:24:13: error: unused parameter 'bar' [-Werror=unused-parameter]
 int foo(int bar) { return 0; }
             ^
cc1: all warnings being treated as errors
configure:5143: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo(int bar) { return 0; }
configure:5156: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Werror -Wno-unused-parameter  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5156: $? = 0
configure:5158: result: yes
configure:5199: checking whether gcc supports -Wno-maybe-uninitialized
configure:5207: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Werror -Wno-maybe-uninitialized  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5207: $? = 0
configure:5217: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Werror -Wmaybe-uninitialized  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5217: $? = 0
configure:5219: result: yes
configure:5287: checking whether gcc supports -Wno-clobbered
configure:5295: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Werror -Wno-clobbered  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5295: $? = 0
configure:5305: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Werror -Wclobbered  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5305: $? = 0
configure:5307: result: yes
configure:5375: checking whether gcc supports -Wempty-body
configure:5383: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Werror -Wempty-body  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5383: $? = 0
configure:5385: result: yes
configure:5424: checking whether gcc supports -Wnewline-eof
configure:5432: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wnewline-eof  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
gcc: error: unrecognized command line option '-Wnewline-eof'
configure:5432: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo;
configure:5463: result: no
configure:5473: checking whether gcc supports -Wint-conversion
configure:5481: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wint-conversion  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
gcc: error: unrecognized command line option '-Wint-conversion'
configure:5481: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo;
configure:5512: result: no
configure:5522: checking whether gcc supports -Wenum-conversion
configure:5530: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wenum-conversion  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
gcc: error: unrecognized command line option '-Wenum-conversion'
configure:5530: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo;
configure:5561: result: no
configure:5571: checking whether gcc supports -Wshorten-64-to-32
configure:5579: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wshorten-64-to-32  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
gcc: error: unrecognized command line option '-Wshorten-64-to-32'
configure:5579: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo;
configure:5610: result: no
configure:5620: checking whether gcc supports -Wconstant-conversion
configure:5628: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wconstant-conversion  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
gcc: error: unrecognized command line option '-Wconstant-conversion'
configure:5628: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo;
configure:5659: result: no
configure:5669: checking whether gcc supports -Wbool-conversion
configure:5677: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wbool-conversion  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
gcc: error: unrecognized command line option '-Wbool-conversion'
configure:5677: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| int foo;
configure:5708: result: no
configure:5718: checking whether gcc supports -Wno-switch
configure:5726: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wno-switch  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5726: $? = 0
configure:5736: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Werror -Wswitch  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5736: $? = 0
configure:5738: result: yes
configure:5806: checking whether gcc supports -Wno-missing-field-initializers
configure:5814: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Werror -Wno-missing-field-initializers  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5814: $? = 0
configure:5824: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Werror -Wmissing-field-initializers  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5824: $? = 0
configure:5826: result: yes
configure:5894: checking whether gcc supports -Wno-format-security
configure:5902: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Werror -Wno-format-security  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5902: $? = 0
configure:5912: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Werror -Wformat-security  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5912: $? = 0
configure:5914: result: yes
configure:5982: checking whether gcc supports -Wno-format-nonliteral
configure:5990: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Werror -Wno-format-nonliteral  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:5990: $? = 0
configure:6000: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Werror -Wformat-nonliteral  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:6000: $? = 0
configure:6002: result: yes
configure:6075: checking whether gcc supports -Wshadow
configure:6083: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Werror -Wshadow  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:6083: $? = 0
configure:6085: result: yes
configure:6124: checking whether gcc can efficiently use -Wshadow
configure:6140: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -Werror -Wshadow  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:6140: $? = 0
configure:6142: result: yes
configure:6157: checking whether gcc supports -fPIC
configure:6165: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fPIC  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:6165: $? = 0
configure:6167: result: yes
configure:6185: checking how to make shared objects
configure:6206: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fPIC -shared  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
configure:6206: $? = 0
configure:6228: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fPIC -nostart  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
gcc: error: unrecognized command line option '-nostart'
configure:6228: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
|
|               int bar = 0;
|
|               int foo(void)
|               {
|                       return bar;
|               }
|
configure:6245: result: -shared yes
configure:6254: checking whether gcc needs -Wl,--no-undefined to check for undefined references in shared objects
configure:6266: gcc -o conftest  -shared  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
configure:6266: $? = 0
configure:6279: gcc -o conftest  -shared -Wl,--no-undefined  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
configure:6279: $? = 0
configure:6281: result: yes
configure:6310: checking whether gcc needs -fPIC for shared objects
configure:6326: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow  -shared -Wl,--no-undefined  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
configure:6326: $? = 0
configure:6328: result: no
configure:6386: checking whether gcc supports -fno-strict-aliasing
configure:6394: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS conftest.c >&5
configure:6394: $? = 0
configure:6395: result: yes
configure:6416: checking for setrlimit
configure:6416: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS  -march=i686 -flto conftest.c  >&5
configure:6416: $? = 0
configure:6416: result: yes
configure:6426: checking for strnlen
configure:6426: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT  -march=i686 -flto conftest.c  >&5
configure:6426: $? = 0
configure:6426: result: yes
configure:6435: checking for uselocale
configure:6435: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN  -march=i686 -flto conftest.c  >&5
configure:6435: $? = 0
configure:6435: result: yes
configure:6446: checking for newlocale
configure:6446: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN  -march=i686 -flto conftest.c  >&5
configure:6446: $? = 0
configure:6446: result: yes
configure:6457: checking for freelocale
configure:6457: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN  -march=i686 -flto conftest.c  >&5
configure:6457: $? = 0
configure:6457: result: yes
configure:6468: checking xlocale.h usability
configure:6468: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN conftest.c >&5
configure:6468: $? = 0
configure:6468: result: yes
configure:6468: checking xlocale.h presence
configure:6468: gcc -E  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN conftest.c
configure:6468: $? = 0
configure:6468: result: yes
configure:6468: checking for xlocale.h
configure:6468: result: yes
configure:6627: checking host OS
configure:6630: result: Linux
configure:6658: checking for MinGW
configure:6669: result: no
configure:6682: checking for library containing inflateEnd
configure:6713: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include  -march=i686 -flto -L/usr/lib conftest.c  -ldl >&5
/tmp/cc3YhNrc.ltrans0.ltrans.o: In function `main':
/home/murilo/Hercules/conftest.c:39: undefined reference to `inflateEnd'
collect2: error: ld returned 1 exit status
configure:6713: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_USELOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_FREELOCALE 1
| #define HAVE_XLOCALE_H 1
| /* end confdefs.h.  */
|
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char inflateEnd ();
| int
| main ()
| {
| return inflateEnd ();
|   ;
|   return 0;
| }
configure:6713: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include  -march=i686 -flto -L/usr/lib conftest.c -lz   -ldl >&5
configure:6713: $? = 0
configure:6730: result: -lz
configure:6740: checking zlib.h usability
configure:6740: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include conftest.c >&5
configure:6740: $? = 0
configure:6740: result: yes
configure:6740: checking zlib.h presence
configure:6740: gcc -E  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include conftest.c
configure:6740: $? = 0
configure:6740: result: yes
configure:6740: checking for zlib.h
configure:6740: result: yes
configure:6753: checking for library containing sqrt
configure:6784: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include  -march=i686 -flto -L/usr/lib conftest.c -lz  -ldl >&5
conftest.c:35:6: warning: conflicting types for built-in function 'sqrt'
 char sqrt ();
      ^
/tmp/ccDC8Yws.ltrans0.ltrans.o: In function `main':
/home/murilo/Hercules/conftest.c:39: undefined reference to `sqrt'
collect2: error: ld returned 1 exit status
configure:6784: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_USELOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_FREELOCALE 1
| #define HAVE_XLOCALE_H 1
| /* end confdefs.h.  */
|
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sqrt ();
| int
| main ()
| {
| return sqrt ();
|   ;
|   return 0;
| }
configure:6784: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include  -march=i686 -flto -L/usr/lib conftest.c -lm  -lz  -ldl >&5
conftest.c:35:6: warning: conflicting types for built-in function 'sqrt'
 char sqrt ();
      ^
configure:6784: $? = 0
configure:6801: result: -lm
configure:6816: checking for library containing clock_gettime
configure:6847: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include  -march=i686 -flto -L/usr/lib conftest.c -lm -lz  -ldl >&5
configure:6847: $? = 0
configure:6864: result: none required
configure:6883: checking whether CLOCK_MONOTONIC is supported and works
configure:6906: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include  -march=i686 -flto -L/usr/lib conftest.c -lm -lz  -ldl >&5
configure:6906: $? = 0
configure:6906: ./conftest
configure:6906: $? = 0
configure:6908: result: yes
configure:6930: checking for library containing pthread_create
configure:6961: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lm -lz  -ldl >&5
/tmp/ccA6W4FA.ltrans0.ltrans.o: In function `main':
/home/murilo/Hercules/conftest.c:39: undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
configure:6961: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_USELOCALE 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_FREELOCALE 1
| #define HAVE_XLOCALE_H 1
| /* end confdefs.h.  */
|
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char pthread_create ();
| int
| main ()
| {
| return pthread_create ();
|   ;
|   return 0;
| }
configure:6961: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread  -lm -lz  -ldl >&5
configure:6961: $? = 0
configure:6978: result: -lpthread
configure:6988: checking for library containing pthread_sigmask
configure:7019: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl >&5
configure:7019: $? = 0
configure:7036: result: none required
configure:7046: checking for library containing pthread_attr_init
configure:7077: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl >&5
configure:7077: $? = 0
configure:7094: result: none required
configure:7104: checking for library containing pthread_attr_setstacksize
configure:7135: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl >&5
configure:7135: $? = 0
configure:7152: result: none required
configure:7162: checking for library containing pthread_attr_destroy
configure:7193: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl >&5
configure:7193: $? = 0
configure:7210: result: none required
configure:7220: checking for library containing pthread_cancel
configure:7251: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl >&5
configure:7251: $? = 0
configure:7268: result: none required
configure:7278: checking for library containing pthread_join
configure:7309: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl >&5
configure:7309: $? = 0
configure:7326: result: none required
configure:7345: checking for mysql_config
configure:7363: found /usr/bin/mysql_config
configure:7376: result: /usr/bin/mysql_config
configure:7400: checking for mysql_init
configure:7400: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK -I/usr/include/mysql  -march=i686 -flto -L/usr/lib conftest.c -lpthread -lm -lz  -ldl -L/usr/lib/i386-linux-gnu -lmysqlclient -lpthread -lz -lm -ldl >&5
configure:7400: $? = 0
configure:7400: result: yes
configure:7405: checking mysql.h usability
configure:7405: gcc -c -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK -I/usr/include/mysql conftest.c >&5
configure:7405: $? = 0
configure:7405: result: yes
configure:7405: checking mysql.h presence
configure:7405: gcc -E  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK -I/usr/include/mysql conftest.c
configure:7405: $? = 0
configure:7405: result: yes
configure:7405: checking for mysql.h
configure:7405: result: yes
configure:7416: checking MySQL library (required)
configure:7419: result: yes (5.5.40)
configure:7445: checking for pcre_study in -lpcre
configure:7470: gcc -o conftest -g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing  -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK  -march=i686 -flto -L/usr/lib conftest.c -lpcre  -lpthread -lm -lz  -ldl >&5
configure:7470: $? = 0
configure:7479: result: yes
configure:7538: checking PCRE library (optional)
configure:7541: result: yes
configure:7666: checking for doxygen
configure:7694: result: no
configure:7705: checking for perl
configure:7721: found /usr/bin/perl
configure:7733: result: yes
configure:7894: creating ./config.status
 
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
 
This file was extended by config.status, which was
generated by GNU Autoconf 2.69.  Invocation command line was
 
  CONFIG_FILES    =
  CONFIG_HEADERS  =
  CONFIG_LINKS    =
  CONFIG_COMMANDS =
  $ ./config.status
 
on murilo-G31T-M7
 
config.status:752: creating Makefile
config.status:752: creating src/common/Makefile
config.status:752: creating 3rdparty/mt19937ar/Makefile
config.status:752: creating 3rdparty/libconfig/Makefile
config.status:752: creating src/char/Makefile
config.status:752: creating src/login/Makefile
config.status:752: creating src/map/Makefile
config.status:752: creating src/plugins/Makefile
config.status:752: creating src/tool/Makefile
config.status:752: creating src/test/Makefile
config.status:752: creating tools/HPMHookGen/Makefile
 
## ---------------- ##
## Cache variables. ##
## ---------------- ##
 
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_freelocale=yes
ac_cv_func_mysql_init=yes
ac_cv_func_newlocale=yes
ac_cv_func_setrlimit=yes
ac_cv_func_strnlen=yes
ac_cv_func_uselocale=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_mysql_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_xlocale_h=yes
ac_cv_header_zlib_h=yes
ac_cv_lib_pcre_pcre_study=yes
ac_cv_objext=o
ac_cv_path_AR=/usr/bin/ar
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_MYSQL_CONFIG_HOME=/usr/bin/mysql_config
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_HAVE_DOXYGEN=no
ac_cv_prog_HAVE_PERL=yes
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_clock_gettime='none required'
ac_cv_search_inflateEnd=-lz
ac_cv_search_pthread_attr_destroy='none required'
ac_cv_search_pthread_attr_init='none required'
ac_cv_search_pthread_attr_setstacksize='none required'
ac_cv_search_pthread_cancel='none required'
ac_cv_search_pthread_create=-lpthread
ac_cv_search_pthread_join='none required'
ac_cv_search_pthread_sigmask='none required'
ac_cv_search_sqrt=-lm
 
## ----------------- ##
## Output variables. ##
## ----------------- ##
 
AR='/usr/bin/ar'
CC='gcc'
CFLAGS='-g -O2 -pipe -ffast-math -Wall -Wextra -Wno-sign-compare -march=i686 -flto -Wno-unused-parameter -Wno-maybe-uninitialized -Wno-clobbered -Wempty-body -Wno-switch -Wno-missing-field-initializers -Wno-format-security -Wno-format-nonliteral -Wshadow -fno-strict-aliasing'
CPP='gcc -E'
CPPFLAGS=' -DMAXCONN=16384 -I../common -DHAS_TLS -DHAVE_SETRLIMIT -DHAVE_STRNLEN -I/usr/include -DHAVE_MONOTONIC_CLOCK'
DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -D__EXTENSIONS__=1 -D_ALL_SOURCE=1 -D_GNU_SOURCE=1 -D_POSIX_PTHREAD_SEMANTICS=1 -D_TANDEM_SOURCE=1 -DHAVE_USELOCALE=1 -DHAVE_NEWLOCALE=1 -DHAVE_FREELOCALE=1 -DHAVE_XLOCALE_H=1'
DLLEXT='.so'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
GREP='/bin/grep'
HAVE_DOXYGEN='no'
HAVE_MYSQL='yes'
HAVE_PCRE='yes'
HAVE_PERL='yes'
LDFLAGS=' -march=i686 -flto -L/usr/lib'
LIBOBJS=''
LIBS='-lpthread -lm -lz  -ldl'
LTLIBOBJS=''
MYSQL_CFLAGS='-I/usr/include/mysql'
MYSQL_CONFIG_HOME='/usr/bin/mysql_config'
MYSQL_LIBS='-L/usr/lib/i386-linux-gnu -lmysqlclient -lpthread -lz -lm -ldl'
MYSQL_VERSION='5.5.40'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PCRE_CFLAGS=''
PCRE_LIBS='-lpcre'
PLUGINSTATIC=''
SET_MAKE=''
SHELL='/bin/bash'
SOFLAGS=' -shared -Wl,--no-undefined'
STATIC=''
WITH_PLUGINS='yes'
ac_ct_CC='gcc'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host_alias=''
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
 
## ----------- ##
## confdefs.h. ##
## ----------- ##
 
/* confdefs.h */
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define HAVE_USELOCALE 1
#define HAVE_NEWLOCALE 1
#define HAVE_FREELOCALE 1
#define HAVE_XLOCALE_H 1
 
configure: exit 0
Viewed 893 times, submitted by Guest.