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
|
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.59. Invocation command line was
$ ./configure --prefix=/usr --with-gui --enable-nls --mandir=${prefix}/share/man --infodir=${prefix}/share/info
## --------- ##
## Platform. ##
## --------- ##
hostname = vilya
uname -m = i686
uname -r = 2.6.26.3
uname -s = Linux
uname -v = #1 Thu Aug 28 22:17:11 CEST 2008
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /home/richard/bin
PATH: /root/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/bin/X11
PATH: /usr/games
PATH: /sbin
PATH: /usr/sbin
PATH: /home/richard/soft/android/android/tools
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1356: checking for gawk
configure:1372: found /usr/bin/gawk
configure:1382: result: gawk
configure:1444: checking for gcc
configure:1460: found /home/richard/bin/gcc
configure:1470: result: gcc
configure:1714: checking for C compiler version
configure:1717: gcc --version </dev/null >&5
gcc (Debian 4.3.1-9) 4.3.1
Copyright (C) 2008 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:1720: $? = 0
configure:1722: gcc -v </dev/null >&5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.1-9' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --enable-cld --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.3.1 (Debian 4.3.1-9)
configure:1725: $? = 0
configure:1727: gcc -V </dev/null >&5
gcc: '-V' option must have argument
configure:1730: $? = 1
configure:1753: checking for C compiler default output file name
configure:1756: gcc -g -O2 conftest.c >&5
configure:1759: $? = 0
configure:1805: result: a.out
configure:1810: checking whether the C compiler works
configure:1816: ./a.out
configure:1819: $? = 0
configure:1836: result: yes
configure:1843: checking whether we are cross compiling
configure:1845: result: no
configure:1848: checking for suffix of executables
configure:1850: gcc -o conftest -g -O2 conftest.c >&5
configure:1853: $? = 0
configure:1878: result:
configure:1884: checking for suffix of object files
configure:1905: gcc -c -g -O2 conftest.c >&5
configure:1908: $? = 0
configure:1930: result: o
configure:1934: checking whether we are using the GNU C compiler
configure:1958: gcc -c -g -O2 conftest.c >&5
configure:1964: $? = 0
configure:1967: test -z || test ! -s conftest.err
configure:1970: $? = 0
configure:1973: test -s conftest.o
configure:1976: $? = 0
configure:1989: result: yes
configure:1995: checking whether gcc accepts -g
configure:2016: gcc -c -g conftest.c >&5
configure:2022: $? = 0
configure:2025: test -z || test ! -s conftest.err
configure:2028: $? = 0
configure:2031: test -s conftest.o
configure:2034: $? = 0
configure:2045: result: yes
configure:2062: checking for gcc option to accept ANSI C
configure:2132: gcc -c -g -O2 conftest.c >&5
configure:2138: $? = 0
configure:2141: test -z || test ! -s conftest.err
configure:2144: $? = 0
configure:2147: test -s conftest.o
configure:2150: $? = 0
configure:2168: result: none needed
configure:2186: gcc -c -g -O2 conftest.c >&5
conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me'
configure:2192: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:2380: checking for g++
configure:2396: found /home/richard/bin/g++
configure:2406: result: g++
configure:2422: checking for C++ compiler version
configure:2425: g++ --version </dev/null >&5
g++ (Debian 4.3.1-9) 4.3.1
Copyright (C) 2008 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:2428: $? = 0
configure:2430: g++ -v </dev/null >&5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.1-9' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --enable-cld --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.3.1 (Debian 4.3.1-9)
configure:2433: $? = 0
configure:2435: g++ -V </dev/null >&5
g++: '-V' option must have argument
configure:2438: $? = 1
configure:2441: checking whether we are using the GNU C++ compiler
configure:2465: g++ -c -g -O2 conftest.cc >&5
configure:2471: $? = 0
configure:2474: test -z || test ! -s conftest.err
configure:2477: $? = 0
configure:2480: test -s conftest.o
configure:2483: $? = 0
configure:2496: result: yes
configure:2502: checking whether g++ accepts -g
configure:2523: g++ -c -g conftest.cc >&5
configure:2529: $? = 0
configure:2532: test -z || test ! -s conftest.err
configure:2535: $? = 0
configure:2538: test -s conftest.o
configure:2541: $? = 0
configure:2552: result: yes
configure:2594: g++ -c -g -O2 conftest.cc >&5
configure:2600: $? = 0
configure:2603: test -z || test ! -s conftest.err
configure:2606: $? = 0
configure:2609: test -s conftest.o
configure:2612: $? = 0
configure:2638: g++ -c -g -O2 conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:14: error: 'exit' was not declared in this scope
configure:2644: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:2594: g++ -c -g -O2 conftest.cc >&5
conftest.cc:10: error: 'void std::exit(int)' should have been declared inside 'std'
configure:2600: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| /* end confdefs.h. */
| extern "C" void std::exit (int) throw (); using std::exit;
| #include <stdlib.h>
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:2594: g++ -c -g -O2 conftest.cc >&5
conftest.cc:10: error: 'void std::exit(int)' should have been declared inside 'std'
In file included from conftest.cc:12:
/usr/include/stdlib.h:531: error: declaration of 'void std::exit(int) throw ()' throws different exceptions
conftest.cc:10: error: from previous declaration 'void std::exit(int)'
configure:2600: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| /* end confdefs.h. */
| extern "C" void std::exit (int); using std::exit;
| #include <stdlib.h>
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:2594: g++ -c -g -O2 conftest.cc >&5
configure:2600: $? = 0
configure:2603: test -z || test ! -s conftest.err
configure:2606: $? = 0
configure:2609: test -s conftest.o
configure:2612: $? = 0
configure:2638: g++ -c -g -O2 conftest.cc >&5
configure:2644: $? = 0
configure:2647: test -z || test ! -s conftest.err
configure:2650: $? = 0
configure:2653: test -s conftest.o
configure:2656: $? = 0
configure:2684: checking for GCC version
configure:2687: result: 4.3.1
configure:2741: checking for a BSD-compatible install
configure:2796: result: /usr/bin/install -c
configure:2814: checking how to run the C++ preprocessor
configure:2845: g++ -E conftest.cc
configure:2851: $? = 0
configure:2883: g++ -E conftest.cc
conftest.cc:13:28: error: ac_nonexistent.h: No such file or directory
configure:2889: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| #ifdef __cplusplus
| extern "C" void exit (int) throw ();
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:2928: result: g++ -E
configure:2952: g++ -E conftest.cc
configure:2958: $? = 0
configure:2990: g++ -E conftest.cc
conftest.cc:13:28: error: ac_nonexistent.h: No such file or directory
configure:2996: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| #ifdef __cplusplus
| extern "C" void exit (int) throw ();
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3040: checking for egrep
configure:3050: result: grep -E
configure:3055: checking for ANSI C header files
configure:3080: g++ -c -O2 conftest.cc >&5
configure:3086: $? = 0
configure:3089: test -z || test ! -s conftest.err
configure:3092: $? = 0
configure:3095: test -s conftest.o
configure:3098: $? = 0
configure:3187: g++ -o conftest -O2 conftest.cc >&5
configure:3190: $? = 0
configure:3192: ./conftest
configure:3195: $? = 0
configure:3210: result: yes
configure:3234: checking for sys/types.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for sys/stat.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for stdlib.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for string.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for memory.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for strings.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for inttypes.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for stdint.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3234: checking for unistd.h
configure:3250: g++ -c -O2 conftest.cc >&5
configure:3256: $? = 0
configure:3259: test -z || test ! -s conftest.err
configure:3262: $? = 0
configure:3265: test -s conftest.o
configure:3268: $? = 0
configure:3279: result: yes
configure:3291: checking for size_t
configure:3315: g++ -c -O2 conftest.cc >&5
configure:3321: $? = 0
configure:3324: test -z || test ! -s conftest.err
configure:3327: $? = 0
configure:3330: test -s conftest.o
configure:3333: $? = 0
configure:3344: result: yes
configure:3356: checking whether byte ordering is bigendian
configure:3383: g++ -c -O2 conftest.cc >&5
configure:3389: $? = 0
configure:3392: test -z || test ! -s conftest.err
configure:3395: $? = 0
configure:3398: test -s conftest.o
configure:3401: $? = 0
configure:3425: g++ -c -O2 conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:30: error: 'big' was not declared in this scope
conftest.cc:30: error: expected `;' before 'endian'
configure:3431: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| #ifdef __cplusplus
| extern "C" void exit (int) throw ();
| #endif
| #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 <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:3564: result: no
configure:3583: checking whether we are compiling for Windows
configure:3605: result: no
configure:3637: checking whether the C++ compiler is recent enough
configure:3667: g++ -c -O2 conftest.cc >&5
configure:3673: $? = 0
configure:3676: test -z || test ! -s conftest.err
configure:3679: $? = 0
configure:3682: test -s conftest.o
configure:3685: $? = 0
configure:3697: result: yes
configure:3764: checking whether the C++ preprocessor supports variable-arg macros
configure:3795: g++ -c -O2 conftest.cc >&5
configure:3801: $? = 0
configure:3804: test -z || test ! -s conftest.err
configure:3807: $? = 0
configure:3810: test -s conftest.o
configure:3813: $? = 0
configure:3825: result: yes
configure:3842: checking for wget
configure:3858: found /usr/bin/wget
configure:3869: result: yes
configure:3883: checking for value of --enable-debug
configure:3892: result: "no"
configure:3918: checking for value of --with-pkg-config-prefix
configure:3929: result: not set
configure:3946: checking for ANSI C header files
configure:4101: result: yes
configure:4128: checking stddef.h usability
configure:4140: g++ -c -O2 conftest.cc >&5
configure:4146: $? = 0
configure:4149: test -z || test ! -s conftest.err
configure:4152: $? = 0
configure:4155: test -s conftest.o
configure:4158: $? = 0
configure:4168: result: yes
configure:4172: checking stddef.h presence
configure:4182: g++ -E conftest.cc
configure:4188: $? = 0
configure:4208: result: yes
configure:4243: checking for stddef.h
configure:4250: result: yes
configure:4119: checking for unistd.h
configure:4124: result: yes
configure:4128: checking limits.h usability
configure:4140: g++ -c -O2 conftest.cc >&5
configure:4146: $? = 0
configure:4149: test -z || test ! -s conftest.err
configure:4152: $? = 0
configure:4155: test -s conftest.o
configure:4158: $? = 0
configure:4168: result: yes
configure:4172: checking limits.h presence
configure:4182: g++ -E conftest.cc
configure:4188: $? = 0
configure:4208: result: yes
configure:4243: checking for limits.h
configure:4250: result: yes
configure:4119: checking for string.h
configure:4124: result: yes
configure:4265: checking for zlibVersion in -lz
configure:4295: g++ -o conftest -O2 conftest.cc -lz >&5
configure:4301: $? = 0
configure:4304: test -z || test ! -s conftest.err
configure:4307: $? = 0
configure:4310: test -s conftest
configure:4313: $? = 0
configure:4326: result: yes
configure:4413: checking zlib.h usability
configure:4425: g++ -c -O2 conftest.cc >&5
configure:4431: $? = 0
configure:4434: test -z || test ! -s conftest.err
configure:4437: $? = 0
configure:4440: test -s conftest.o
configure:4443: $? = 0
configure:4453: result: yes
configure:4457: checking zlib.h presence
configure:4467: g++ -E conftest.cc
configure:4473: $? = 0
configure:4493: result: yes
configure:4528: checking for zlib.h
configure:4535: result: yes
configure:4556: checking for BZ2_bzCompressInit in -lbz2
configure:4586: g++ -o conftest -O2 conftest.cc -lbz2 -lz >&5
configure:4592: $? = 0
configure:4595: test -z || test ! -s conftest.err
configure:4598: $? = 0
configure:4601: test -s conftest
configure:4604: $? = 0
configure:4617: result: yes
configure:4759: checking bzlib.h usability
configure:4771: g++ -c -O2 conftest.cc >&5
configure:4777: $? = 0
configure:4780: test -z || test ! -s conftest.err
configure:4783: $? = 0
configure:4786: test -s conftest.o
configure:4789: $? = 0
configure:4799: result: yes
configure:4803: checking bzlib.h presence
configure:4813: g++ -E conftest.cc
configure:4819: $? = 0
configure:4839: result: yes
configure:4874: checking for bzlib.h
configure:4881: result: yes
configure:4902: checking for value of --with-libdb
configure:4913: result: "yes"
configure:4926: checking db.h usability
configure:4938: g++ -c -O2 conftest.cc >&5
configure:4944: $? = 0
configure:4947: test -z || test ! -s conftest.err
configure:4950: $? = 0
configure:4953: test -s conftest.o
configure:4956: $? = 0
configure:4966: result: yes
configure:4970: checking db.h presence
configure:4980: g++ -E conftest.cc
configure:4986: $? = 0
configure:5006: result: yes
configure:5041: checking for db.h
configure:5048: result: yes
configure:5059: checking for libdb version in db.h
configure:5063: result: 4.6
configure:5075: checking for db_create in libdb-4.6
configure:5095: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:5101: $? = 0
configure:5104: test -z || test ! -s conftest.err
configure:5107: $? = 0
configure:5110: test -s conftest
configure:5113: $? = 0
configure:5124: result: yes
configure:5161: checking for value of --with-gui
configure:5171: result: "yes"
configure:5190: checking for pkg-config
configure:5206: found /usr/bin/pkg-config
configure:5217: result: yes
configure:5239: checking for GTK+ 2.4.0 or later
configure:5242: result: 2.12.11
configure:5255: checking for value of --with-libcurl
configure:5265: result: "auto"
configure:5275: checking for libcurl 7.11.0 or later
configure:5281: result: 7.18.2
configure:5785: checking for value of --with-uint64
configure:5795: result: "auto"
configure:5798: checking for unsigned long long
configure:5819: g++ -c -O2 conftest.cc >&5
configure:5825: $? = 0
configure:5828: test -z || test ! -s conftest.err
configure:5831: $? = 0
configure:5834: test -s conftest.o
configure:5837: $? = 0
configure:5848: result: yes
configure:5863: checking for unsigned long
configure:5887: g++ -c -O2 conftest.cc >&5
configure:5893: $? = 0
configure:5896: test -z || test ! -s conftest.err
configure:5899: $? = 0
configure:5902: test -s conftest.o
configure:5905: $? = 0
configure:5916: result: yes
configure:5919: checking size of unsigned long
configure:6231: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6234: $? = 0
configure:6236: ./conftest
configure:6239: $? = 0
configure:6262: result: 4
configure:6269: checking for unsigned long long
configure:6293: g++ -c -O2 conftest.cc >&5
configure:6299: $? = 0
configure:6302: test -z || test ! -s conftest.err
configure:6305: $? = 0
configure:6308: test -s conftest.o
configure:6311: $? = 0
configure:6322: result: yes
configure:6325: checking size of unsigned long long
configure:6637: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6640: $? = 0
configure:6642: ./conftest
configure:6645: $? = 0
configure:6668: result: 8
configure:6701: checking for 64 bit unsigned integer type
configure:6703: result: unsigned long long
configure:6710: checking for operator<<(uint64)
configure:6734: g++ -c -O2 conftest.cc >&5
configure:6740: $? = 0
configure:6743: test -z || test ! -s conftest.err
configure:6746: $? = 0
configure:6749: test -s conftest.o
configure:6752: $? = 0
configure:6764: result: yes
configure:6778: checking for string::compare(size_t,size_t,string,size_t,size_t)
configure:6802: g++ -c -O2 conftest.cc >&5
configure:6808: $? = 0
configure:6811: test -z || test ! -s conftest.err
configure:6814: $? = 0
configure:6817: test -s conftest.o
configure:6820: $? = 0
configure:6832: result: yes
configure:6845: checking for string::compare(size_t,size_t,const char*,size_t)
configure:6869: g++ -c -O2 conftest.cc >&5
configure:6875: $? = 0
configure:6878: test -z || test ! -s conftest.err
configure:6881: $? = 0
configure:6884: test -s conftest.o
configure:6887: $? = 0
configure:6899: result: yes
configure:6926: checking for lstat
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for truncate
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for ftruncate
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for mmap
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for memcpy
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for fileno
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for snprintf
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:6926: checking for _snprintf
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
/tmp/ccqrTxoV.o: In function `main':
conftest.cc:(.text+0x17): undefined reference to `_snprintf'
/tmp/ccqrTxoV.o:(.data+0x0): undefined reference to `_snprintf'
collect2: ld returned 1 exit status
configure:6989: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define JIGDO_VERSION "0.7.3"
| #ifdef __cplusplus
| extern "C" void exit (int) throw ();
| #endif
| #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 UNIX 1
| #define HAVE_VARMACRO 1
| #define DEBUG 0
| #define STDC_HEADERS 1
| #define HAVE_STDDEF_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_STRING_H 1
| #define HAVE_LIBDB 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_UNSIGNED_LONG_LONG 8
| #define TYPE_UINT64 unsigned long long
| #define HAVE_OUTUINT64 1
| #define HAVE_STRINGCMP 1
| #define HAVE_STRINGSTRCMP 1
| #define HAVE_LSTAT 1
| #define HAVE_TRUNCATE 1
| #define HAVE_FTRUNCATE 1
| #define HAVE_MMAP 1
| #define HAVE_MEMCPY 1
| #define HAVE_FILENO 1
| #define HAVE_SNPRINTF 1
| /* end confdefs.h. */
| /* Define _snprintf to an innocuous variant, in case <limits.h> declares _snprintf.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define _snprintf innocuous__snprintf
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char _snprintf (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef _snprintf
|
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char _snprintf ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub__snprintf) || defined (__stub____snprintf)
| choke me
| #else
| char (*f) () = _snprintf;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != _snprintf;
| ;
| return 0;
| }
configure:7013: result: no
configure:6926: checking for setenv
configure:6983: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:6989: $? = 0
configure:6992: test -z || test ! -s conftest.err
configure:6995: $? = 0
configure:6998: test -s conftest
configure:7001: $? = 0
configure:7013: result: yes
configure:7024: checking for TIOCGWINSZ ioctl
configure:7050: g++ -c -O2 conftest.cc >&5
configure:7056: $? = 0
configure:7059: test -z || test ! -s conftest.err
configure:7062: $? = 0
configure:7065: test -s conftest.o
configure:7068: $? = 0
configure:7080: result: yes
configure:7105: checking for getopt_long in <getopt.h>
configure:7127: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
configure:7133: $? = 0
configure:7136: test -z || test ! -s conftest.err
configure:7139: $? = 0
configure:7142: test -s conftest
configure:7145: $? = 0
configure:7159: result: yes
configure:7173: checking for uname in <sys/utsname.h>
configure:7194: g++ -o conftest -O2 conftest.cc -lbz2 -lz -ldb-4.6 >&5
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-g -O2'
ac_cv_env_CPPFLAGS_set=set
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=set
ac_cv_env_CXXFLAGS_value='-g -O2'
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_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_exeext=
ac_cv_func__snprintf=no
ac_cv_func_fileno=yes
ac_cv_func_ftruncate=yes
ac_cv_func_lstat=yes
ac_cv_func_memcpy=yes
ac_cv_func_mmap=yes
ac_cv_func_setenv=yes
ac_cv_func_snprintf=yes
ac_cv_func_truncate=yes
ac_cv_header_bzlib_h=yes
ac_cv_header_db_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=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_zlib_h=yes
ac_cv_lib_bz2_BZ2_bzCompressInit=yes
ac_cv_lib_z_zlibVersion=yes
ac_cv_objext=o
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_PKGCONFIG=yes
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep='grep -E'
ac_cv_prog_have_wget=yes
ac_cv_sizeof_unsigned_long=4
ac_cv_sizeof_unsigned_long_long=8
ac_cv_type_size_t=yes
ac_cv_type_unsigned_long=yes
ac_cv_type_unsigned_long_long=yes
jigdo_cv_func_getopt_long=yes
jigdo_cv_have_ulonglong=yes
jigdo_cv_ioctl_winsz=yes
jigdo_cv_prog_cxx_outuint64=yes
jigdo_cv_prog_cxx_recent=yes
jigdo_cv_prog_cxx_stringcmp=yes
jigdo_cv_prog_cxx_stringstrcmp=yes
jigdo_cv_prog_cxx_varmacro=yes
## ----------------- ##
## Output variables. ##
## ----------------- ##
AWK='gawk'
CATALOGS=''
CC='gcc'
CFLAGS=' -O2'
CPPFLAGS=''
CURLCFLAGS=''
CURLLIBS='-lcurl'
CXX='g++'
CXXCPP='g++ -E'
CXXFLAGS=' -O2'
DEFS=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
GLIBLIBS='-lglib-2.0 '
GTKCFLAGS='-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 '
GTKLIBS='-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 '
IFNOT_CROSSCOMPILING=''
IFNOT_DEBUG=''
IFNOT_GXX2=''
IF_CROSSCOMPILING=''
IF_DEBUG='#'
IF_GUI=''
IF_GXX2='#'
IF_UNIX=''
IF_WINDOWS='#'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
JIGDO_VERSION='0.7.3'
LDFLAGS=''
LIBOBJS=''
LIBS='-lbz2 -lz -ldb-4.6'
LTLIBOBJS=''
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PKGCONFIG='yes'
SHELL='/bin/sh'
USE_NLS=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${prefix}/share'
exe=''
exec_prefix='NONE'
have_glade=''
have_wget='yes'
host_alias=''
includedir='${prefix}/include'
infodir='${prefix}/share/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/share/man'
oldincludedir='/usr/include'
prefix='/usr'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ------------- ##
## Output files. ##
## ------------- ##
SRC_MAKEDEPS=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define DEBUG 0
#define HAVE_FILENO 1
#define HAVE_FTRUNCATE 1
#define HAVE_GETOPT_LONG 1
#define HAVE_INTTYPES_H 1
#define HAVE_IOCTL_WINSZ 1
#define HAVE_LIBDB 1
#define HAVE_LIMITS_H 1
#define HAVE_LSTAT 1
#define HAVE_MEMCPY 1
#define HAVE_MEMORY_H 1
#define HAVE_MMAP 1
#define HAVE_OUTUINT64 1
#define HAVE_SETENV 1
#define HAVE_SNPRINTF 1
#define HAVE_STDDEF_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGCMP 1
#define HAVE_STRINGSTRCMP 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_TRUNCATE 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNSIGNED_LONG_LONG 1
#define HAVE_VARMACRO 1
#define JIGDO_VERSION "0.7.3"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SIZEOF_UNSIGNED_LONG 4
#define SIZEOF_UNSIGNED_LONG_LONG 8
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define TYPE_UINT64 unsigned long long
#define UNIX 1
#endif
#ifdef __cplusplus
extern "C" void exit (int) throw ();
configure: caught signal 2
configure: exit 1
|