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
|
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
## --------- ##
## Platform. ##
## --------- ##
hostname = captainmorgan
uname -m = x86_64
uname -r = 2.6.12-1-amd64-k8
uname -s = Linux
uname -v = #1 Wed Sep 28 02:31:26 CEST 2005
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/qt/bin
PATH: /opt/gnome/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/bin/X11
PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1626: checking build system type
configure:1644: result: x86_64-unknown-linux-gnu
configure:1652: checking host system type
configure:1666: result: x86_64-unknown-linux-gnu
configure:1720: checking for gcc
configure:1736: found /usr/bin/gcc
configure:1746: result: gcc
configure:1990: checking for C compiler version
configure:1993: gcc --version </dev/null >&5
gcc (GCC) 4.0.3 20051201 (prerelease) (Debian 4.0.2-5)
Copyright (C) 2005 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:1996: $? = 0
configure:1998: gcc -v </dev/null >&5
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,java,f95,objc,ada,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre --enable-mpfr --disable-werror --enable-checking=release x86_64-linux-gnu
Thread model: posix
gcc version 4.0.3 20051201 (prerelease) (Debian 4.0.2-5)
configure:2001: $? = 0
configure:2003: gcc -V </dev/null >&5
gcc: '-V' option must have argument
configure:2006: $? = 1
configure:2029: checking for C compiler default output file name
configure:2032: gcc conftest.c >&5
configure:2035: $? = 0
configure:2081: result: a.out
configure:2086: checking whether the C compiler works
configure:2092: ./a.out
configure:2095: $? = 0
configure:2112: result: yes
configure:2119: checking whether we are cross compiling
configure:2121: result: no
configure:2124: checking for suffix of executables
configure:2126: gcc -o conftest conftest.c >&5
configure:2129: $? = 0
configure:2154: result:
configure:2160: checking for suffix of object files
configure:2181: gcc -c conftest.c >&5
configure:2184: $? = 0
configure:2206: result: o
configure:2210: checking whether we are using the GNU C compiler
configure:2234: gcc -c conftest.c >&5
configure:2240: $? = 0
configure:2243: test -z || test ! -s conftest.err
configure:2246: $? = 0
configure:2249: test -s conftest.o
configure:2252: $? = 0
configure:2265: result: yes
configure:2271: checking whether gcc accepts -g
configure:2292: gcc -c -g conftest.c >&5
configure:2298: $? = 0
configure:2301: test -z || test ! -s conftest.err
configure:2304: $? = 0
configure:2307: test -s conftest.o
configure:2310: $? = 0
configure:2321: result: yes
configure:2338: checking for gcc option to accept ANSI C
configure:2408: gcc -c -g -O2 conftest.c >&5
configure:2414: $? = 0
configure:2417: test -z || test ! -s conftest.err
configure:2420: $? = 0
configure:2423: test -s conftest.o
configure:2426: $? = 0
configure:2444: result: none needed
configure:2462: gcc -c -g -O2 conftest.c >&5
conftest.c:2: error: syntax error before 'me'
configure:2468: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:2598: checking for a sed that does not truncate output
configure:2652: result: /bin/sed
configure:2655: checking for egrep
configure:2665: result: grep -E
configure:2681: checking for ld used by gcc
configure:2748: result: /usr/bin/ld
configure:2757: checking if the linker (/usr/bin/ld) is GNU ld
configure:2772: result: yes
configure:2777: checking for /usr/bin/ld option to reload object files
configure:2784: result: -r
configure:2802: checking for BSD-compatible nm
configure:2844: result: /usr/bin/nm -B
configure:2848: checking whether ln -s works
configure:2852: result: yes
configure:2859: checking how to recognise dependent libraries
configure:3031: result: pass_all
configure:3116: gcc -c -g -O2 conftest.c >&5
configure:3119: $? = 0
configure:3244: checking how to run the C preprocessor
configure:3279: gcc -E conftest.c
configure:3285: $? = 0
configure:3317: gcc -E conftest.c
conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
configure:3323: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3362: result: gcc -E
configure:3386: gcc -E conftest.c
configure:3392: $? = 0
configure:3424: gcc -E conftest.c
conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
configure:3430: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3474: checking for ANSI C header files
configure:3499: gcc -c -g -O2 conftest.c >&5
configure:3505: $? = 0
configure:3508: test -z || test ! -s conftest.err
configure:3511: $? = 0
configure:3514: test -s conftest.o
configure:3517: $? = 0
configure:3606: gcc -o conftest -g -O2 conftest.c >&5
conftest.c: In function 'main':
conftest.c:26: warning: incompatible implicit declaration of built-in function 'exit'
configure:3609: $? = 0
configure:3611: ./conftest
configure:3614: $? = 0
configure:3629: result: yes
configure:3653: checking for sys/types.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for sys/stat.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for stdlib.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for string.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for memory.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for strings.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for inttypes.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for stdint.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3653: checking for unistd.h
configure:3669: gcc -c -g -O2 conftest.c >&5
configure:3675: $? = 0
configure:3678: test -z || test ! -s conftest.err
configure:3681: $? = 0
configure:3684: test -s conftest.o
configure:3687: $? = 0
configure:3698: result: yes
configure:3724: checking dlfcn.h usability
configure:3736: gcc -c -g -O2 conftest.c >&5
configure:3742: $? = 0
configure:3745: test -z || test ! -s conftest.err
configure:3748: $? = 0
configure:3751: test -s conftest.o
configure:3754: $? = 0
configure:3764: result: yes
configure:3768: checking dlfcn.h presence
configure:3778: gcc -E conftest.c
configure:3784: $? = 0
configure:3804: result: yes
configure:3839: checking for dlfcn.h
configure:3846: result: yes
configure:3911: checking for g++
configure:3927: found /usr/bin/g++
configure:3937: result: g++
configure:3953: checking for C++ compiler version
configure:3956: g++ --version </dev/null >&5
g++ (GCC) 4.0.3 20051201 (prerelease) (Debian 4.0.2-5)
Copyright (C) 2005 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:3959: $? = 0
configure:3961: g++ -v </dev/null >&5
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,java,f95,objc,ada,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre --enable-mpfr --disable-werror --enable-checking=release x86_64-linux-gnu
Thread model: posix
gcc version 4.0.3 20051201 (prerelease) (Debian 4.0.2-5)
configure:3964: $? = 0
configure:3966: g++ -V </dev/null >&5
g++: '-V' option must have argument
configure:3969: $? = 1
configure:3972: checking whether we are using the GNU C++ compiler
configure:3996: g++ -c conftest.cc >&5
configure:4002: $? = 0
configure:4005: test -z || test ! -s conftest.err
configure:4008: $? = 0
configure:4011: test -s conftest.o
configure:4014: $? = 0
configure:4027: result: yes
configure:4033: checking whether g++ accepts -g
configure:4054: g++ -c -g conftest.cc >&5
configure:4060: $? = 0
configure:4063: test -z || test ! -s conftest.err
configure:4066: $? = 0
configure:4069: test -s conftest.o
configure:4072: $? = 0
configure:4083: result: yes
configure:4125: g++ -c -g -O2 conftest.cc >&5
configure:4131: $? = 0
configure:4134: test -z || test ! -s conftest.err
configure:4137: $? = 0
configure:4140: test -s conftest.o
configure:4143: $? = 0
configure:4169: g++ -c -g -O2 conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:24: error: 'exit' was not declared in this scope
configure:4175: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 HAVE_DLFCN_H 1
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:4125: g++ -c -g -O2 conftest.cc >&5
configure:4131: $? = 0
configure:4134: test -z || test ! -s conftest.err
configure:4137: $? = 0
configure:4140: test -s conftest.o
configure:4143: $? = 0
configure:4169: g++ -c -g -O2 conftest.cc >&5
configure:4175: $? = 0
configure:4178: test -z || test ! -s conftest.err
configure:4181: $? = 0
configure:4184: test -s conftest.o
configure:4187: $? = 0
configure:4220: checking how to run the C++ preprocessor
configure:4251: g++ -E conftest.cc
configure:4257: $? = 0
configure:4289: g++ -E conftest.cc
conftest.cc:23:28: error: ac_nonexistent.h: No such file or directory
configure:4295: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4334: result: g++ -E
configure:4358: g++ -E conftest.cc
configure:4364: $? = 0
configure:4396: g++ -E conftest.cc
conftest.cc:23:28: error: ac_nonexistent.h: No such file or directory
configure:4402: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4499: checking for g77
configure:4528: result: no
configure:4499: checking for f77
configure:4528: result: no
configure:4499: checking for xlf
configure:4528: result: no
configure:4499: checking for frt
configure:4528: result: no
configure:4499: checking for pgf77
configure:4528: result: no
configure:4499: checking for fort77
configure:4528: result: no
configure:4499: checking for fl32
configure:4528: result: no
configure:4499: checking for af77
configure:4528: result: no
configure:4499: checking for f90
configure:4528: result: no
configure:4499: checking for xlf90
configure:4528: result: no
configure:4499: checking for pgf90
configure:4528: result: no
configure:4499: checking for epcf90
configure:4528: result: no
configure:4499: checking for f95
configure:4528: result: no
configure:4499: checking for fort
configure:4528: result: no
configure:4499: checking for xlf95
configure:4528: result: no
configure:4499: checking for ifc
configure:4528: result: no
configure:4499: checking for efc
configure:4528: result: no
configure:4499: checking for pgf95
configure:4528: result: no
configure:4499: checking for lf95
configure:4528: result: no
configure:4499: checking for gfortran
configure:4528: result: no
configure:4540: checking for Fortran 77 compiler version
configure:4543: --version </dev/null >&5
./configure: line 4544: --version: command not found
configure:4546: $? = 127
configure:4548: -v </dev/null >&5
./configure: line 4549: -v: command not found
configure:4551: $? = 127
configure:4553: -V </dev/null >&5
./configure: line 4554: -V: command not found
configure:4556: $? = 127
configure:4564: checking whether we are using the GNU Fortran 77 compiler
configure:4578: -c conftest.F >&5
./configure: line 4579: -c: command not found
configure:4584: $? = 127
configure: failed program was:
| program main
| #ifndef __GNUC__
| choke me
| #endif
|
| end
configure:4609: result: no
configure:4615: checking whether accepts -g
configure:4627: -c -g conftest.f >&5
./configure: line 4628: -c: command not found
configure:4633: $? = 127
configure: failed program was:
| program main
|
| end
configure:4657: result: no
configure:4687: checking the maximum length of command line arguments
configure:4779: result: 32768
configure:4790: checking command to parse /usr/bin/nm -B output from gcc object
configure:4886: gcc -c -g -O2 conftest.c >&5
configure:4889: $? = 0
configure:4893: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:4896: $? = 0
configure:4948: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
configure:4951: $? = 0
configure:4989: result: ok
configure:4993: checking for objdir
configure:5008: result: .libs
configure:5098: checking for ar
configure:5114: found /usr/bin/ar
configure:5125: result: ar
configure:5178: checking for ranlib
configure:5194: found /usr/bin/ranlib
configure:5205: result: ranlib
configure:5258: checking for strip
configure:5274: found /usr/bin/strip
configure:5285: result: strip
configure:5572: checking if gcc static flag works
configure:5600: result: yes
configure:5618: checking if gcc supports -fno-rtti -fno-exceptions
configure:5636: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:5640: $? = 0
configure:5653: result: no
configure:5668: checking for gcc option to produce PIC
configure:5872: result: -fPIC
configure:5880: checking if gcc PIC flag -fPIC works
configure:5898: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5
configure:5902: $? = 0
configure:5915: result: yes
configure:5939: checking if gcc supports -c -o file.o
configure:5960: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:5964: $? = 0
configure:5986: result: yes
configure:6012: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:6907: result: yes
configure:6933: checking whether -lc should be explicitly linked in
configure:6938: gcc -c -g -O2 conftest.c >&5
configure:6941: $? = 0
configure:6955: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:6958: $? = 0
configure:6970: result: no
configure:6978: checking dynamic linker characteristics
configure:7544: result: GNU/Linux ld.so
configure:7548: checking how to hardcode library paths into programs
configure:7573: result: immediate
configure:7587: checking whether stripping libraries is possible
configure:7592: result: yes
configure:8415: checking if libtool supports shared libraries
configure:8417: result: yes
configure:8420: checking whether to build shared libraries
configure:8441: result: yes
configure:8444: checking whether to build static libraries
configure:8448: result: yes
configure:8540: creating libtool
configure:9118: checking for ld used by g++
configure:9185: result: /usr/bin/ld -m elf_x86_64
configure:9194: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:9209: result: yes
configure:9260: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:10138: result: yes
configure:10156: g++ -c -g -O2 conftest.cpp >&5
configure:10159: $? = 0
configure:10269: checking for g++ option to produce PIC
configure:10537: result: -fPIC
configure:10545: checking if g++ PIC flag -fPIC works
configure:10563: g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5
configure:10567: $? = 0
configure:10580: result: yes
configure:10604: checking if g++ supports -c -o file.o
configure:10625: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:10629: $? = 0
configure:10651: result: yes
configure:10677: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:10705: result: yes
configure:10776: checking dynamic linker characteristics
configure:11342: result: GNU/Linux ld.so
configure:11346: checking how to hardcode library paths into programs
configure:11371: result: immediate
configure:11385: checking whether stripping libraries is possible
configure:11390: result: yes
configure:18934: checking for a BSD-compatible install
configure:18989: result: /usr/bin/install -c
configure:19000: checking whether build environment is sane
configure:19043: result: yes
configure:19067: WARNING: `missing' script is too old or missing
configure:19108: checking for gawk
configure:19137: result: no
configure:19108: checking for mawk
configure:19124: found /usr/bin/mawk
configure:19134: result: mawk
configure:19144: checking whether make sets $(MAKE)
configure:19164: result: yes
configure:19194: checking for style of include used by make
configure:19222: result: GNU
configure:19398: checking dependency style of gcc
configure:19488: result: gcc3
configure:19507: checking dependency style of g++
configure:19597: result: gcc3
configure:19669: checking for gcc
configure:19695: result: gcc
configure:19939: checking for C compiler version
configure:19942: gcc --version </dev/null >&5
gcc (GCC) 4.0.3 20051201 (prerelease) (Debian 4.0.2-5)
Copyright (C) 2005 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:19945: $? = 0
configure:19947: gcc -v </dev/null >&5
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,java,f95,objc,ada,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre --enable-mpfr --disable-werror --enable-checking=release x86_64-linux-gnu
Thread model: posix
gcc version 4.0.3 20051201 (prerelease) (Debian 4.0.2-5)
configure:19950: $? = 0
configure:19952: gcc -V </dev/null >&5
gcc: '-V' option must have argument
configure:19955: $? = 1
configure:19958: checking whether we are using the GNU C compiler
configure:20013: result: yes
configure:20019: checking whether gcc accepts -g
configure:20069: result: yes
configure:20086: checking for gcc option to accept ANSI C
configure:20192: result: none needed
configure:20210: gcc -c -g -O2 conftest.c >&5
conftest.c:2: error: syntax error before 'me'
configure:20216: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:20359: checking for a BSD-compatible install
configure:20414: result: /usr/bin/install -c
configure:20426: checking for ANSI C header files
configure:20581: result: yes
configure:20606: checking fcntl.h usability
configure:20618: gcc -c -g -O2 conftest.c >&5
configure:20624: $? = 0
configure:20627: test -z || test ! -s conftest.err
configure:20630: $? = 0
configure:20633: test -s conftest.o
configure:20636: $? = 0
configure:20646: result: yes
configure:20650: checking fcntl.h presence
configure:20660: gcc -E conftest.c
configure:20666: $? = 0
configure:20686: result: yes
configure:20721: checking for fcntl.h
configure:20728: result: yes
configure:20606: checking sys/time.h usability
configure:20618: gcc -c -g -O2 conftest.c >&5
configure:20624: $? = 0
configure:20627: test -z || test ! -s conftest.err
configure:20630: $? = 0
configure:20633: test -s conftest.o
configure:20636: $? = 0
configure:20646: result: yes
configure:20650: checking sys/time.h presence
configure:20660: gcc -E conftest.c
configure:20666: $? = 0
configure:20686: result: yes
configure:20721: checking for sys/time.h
configure:20728: result: yes
configure:20793: checking for glib-config
configure:20811: found /usr/bin/glib-config
configure:20824: result: /usr/bin/glib-config
configure:20832: checking for GLIB - version >= 1.2.0
configure:20936: gcc -o conftest -g -O2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include conftest.c -L/usr/lib -lglib >&5
configure:20939: $? = 0
configure:20941: ./conftest
configure:20944: $? = 0
configure:20962: result: yes
configure:21106: checking for gtk-config
configure:21124: found /usr/bin/gtk-config
configure:21137: result: /usr/bin/gtk-config
configure:21145: checking for GTK - version >= 1.2.0
configure:21251: gcc -o conftest -g -O2 -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include conftest.c -L/usr/lib -L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule -lglib -ldl -lXi -lXext -lX11 -lm >&5
configure:21254: $? = 0
configure:21256: ./conftest
configure:21259: $? = 0
configure:21277: result: yes
configure:21407: checking for xmms-config
configure:21425: found /usr/bin/xmms-config
configure:21438: result: /usr/bin/xmms-config
configure:21475: checking for gawk
configure:21501: result: mawk
configure:21547: checking for XMMS - version >= 1.2.7
configure:21551: result: yes
configure:21599: checking for pthread_attr_init in -lpthread
configure:21629: gcc -o conftest -g -O2 conftest.c -lpthread >&5
configure:21635: $? = 0
configure:21638: test -z || test ! -s conftest.err
configure:21641: $? = 0
configure:21644: test -s conftest
configure:21647: $? = 0
configure:21660: result: yes
configure:21903: checking for constructor attribute
configure:21926: gcc -o conftest conftest.c >&5
configure:21929: $? = 0
configure:21931: ./conftest
configure:21934: $? = 0
configure:21953: result: yes
configure:21974: checking jack/jack.h usability
configure:21986: gcc -c conftest.c >&5
configure:21992: $? = 0
configure:21995: test -z || test ! -s conftest.err
configure:21998: $? = 0
configure:22001: test -s conftest.o
configure:22004: $? = 0
configure:22014: result: yes
configure:22018: checking jack/jack.h presence
configure:22028: gcc -E conftest.c
configure:22034: $? = 0
configure:22054: result: yes
configure:22089: checking for jack/jack.h
configure:22096: result: yes
configure:22119: checking for jack_activate in -ljack
configure:22149: gcc -o conftest -lpthread -ljack -ldl conftest.c -ljack >&5
configure:22155: $? = 0
configure:22158: test -z || test ! -s conftest.err
configure:22161: $? = 0
configure:22164: test -s conftest
configure:22167: $? = 0
configure:22180: result: yes
configure:22245: checking for pkg-config
configure:22263: found /usr/bin/pkg-config
configure:22275: result: /usr/bin/pkg-config
configure:22290: checking pkg-config is at least version 0.9.0
configure:22293: result: yes
configure:22304: checking for SAMPLERATE
configure:22312: $PKG_CONFIG --exists --print-errors "samplerate >= 0.0.15"
configure:22315: $? = 0
configure:22330: $PKG_CONFIG --exists --print-errors "samplerate >= 0.0.15"
configure:22333: $? = 0
configure:22367: result: yes
configure:22506: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on captainmorgan
config.status:776: creating Makefile
config.status:842: creating config.h
config.status:962: config.h is unchanged
config.status:1142: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_build_alias=x86_64-unknown-linux-gnu
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=
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_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SAMPLERATE_CFLAGS_set=
ac_cv_env_SAMPLERATE_CFLAGS_value=
ac_cv_env_SAMPLERATE_LIBS_set=
ac_cv_env_SAMPLERATE_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_exeext=
ac_cv_f77_compiler_gnu=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_jack_jack_h=yes
ac_cv_header_memory_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_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_host_alias=x86_64-unknown-linux-gnu
ac_cv_lib_jack_jack_activate=yes
ac_cv_lib_pthread_pthread_attr_init=yes
ac_cv_objext=o
ac_cv_path_GLIB_CONFIG=/usr/bin/glib-config
ac_cv_path_GTK_CONFIG=/usr/bin/gtk-config
ac_cv_path_XMMS_CONFIG=/usr/bin/xmms-config
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
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_f77_g=no
ac_cv_prog_make_make_set=yes
ac_cv_samplerate=1
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=32768
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
pkg_cv_SAMPLERATE_CFLAGS=' '
pkg_cv_SAMPLERATE_LIBS='-lsamplerate '
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='aclocal-1.9'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='tar'
AR='ar'
AUTOCONF='autoconf'
AUTOHEADER='autoheader'
AUTOMAKE='automake-1.9'
AWK='mawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS=''
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
F77=''
FFLAGS=''
GLIB_CFLAGS='-I/usr/include/glib-1.2 -I/usr/lib/glib/include'
GLIB_CONFIG='/usr/bin/glib-config'
GLIB_LIBS='-L/usr/lib -lglib'
GTK_CFLAGS='-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include'
GTK_CONFIG='/usr/bin/gtk-config'
GTK_LIBS='-L/usr/lib -L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule -lglib -ldl -lXi -lXext -lX11 -lm'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
JACK_LIBS='-ljack -ldl'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='makeinfo'
OBJEXT='o'
PACKAGE='xmms-jack'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PTHREAD_LIBS='-lpthread'
RANLIB='ranlib'
SAMPLERATE_CFLAGS=' '
SAMPLERATE_LIBS='-lsamplerate '
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
VERSION='0.16'
XMMS_CFLAGS='-I/usr/include/xmms -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include'
XMMS_CONFIG='/usr/bin/xmms-config'
XMMS_DATA_DIR='/usr/share/xmms'
XMMS_EFFECT_PLUGIN_DIR='/usr/lib/xmms/Effect'
XMMS_GENERAL_PLUGIN_DIR='/usr/lib/xmms/General'
XMMS_INPUT_PLUGIN_DIR='/usr/lib/xmms/Input'
XMMS_LIBS='-L/usr/lib -L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule -lglib -ldl -lXi -lXext -lX11 -lm -lxmms'
XMMS_OUTPUT_PLUGIN_DIR='/usr/lib/xmms/Output'
XMMS_PLUGIN_DIR='/usr/lib/xmms'
XMMS_VERSION='1.2.10'
XMMS_VISUALIZATION_PLUGIN_DIR='/usr/lib/xmms/Visualization'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
ac_pt_PKG_CONFIG='/usr/bin/pkg-config'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${prefix}/share'
exec_prefix='${prefix}'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/home/cmorgan/xmms-jack/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
mkdir_p='mkdir -p --'
oldincludedir='/usr/include'
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define HAVE_CTOR 1
#define HAVE_DLFCN_H 1
#define HAVE_FCNTL_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_JACK_JACK_H 1
#define HAVE_MEMORY_H 1
#define HAVE_SAMPLERATE 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define PACKAGE "xmms-jack"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define VERSION "0.16"
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;
configure: exit 0
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status config.h
on captainmorgan
config.status:842: creating config.h
config.status:962: config.h is unchanged
|