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
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by gdl configure 0.9.2, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ ./configure
## --------- ##
## Platform. ##
## --------- ##
hostname = kubuntu1110VM
uname -m = i686
uname -r = 3.0.0-12-generic
uname -s = Linux
uname -v = #20-Ubuntu SMP Fri Oct 7 14:50:42 UTC 2011
/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
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2502: checking autoconf version
configure:2505: result: >=2.62
configure:2552: checking for a BSD-compatible install
configure:2620: result: /usr/bin/install -c
configure:2631: checking whether build environment is sane
configure:2681: result: yes
configure:2822: checking for a thread-safe mkdir -p
configure:2861: result: /bin/mkdir -p
configure:2874: checking for gawk
configure:2904: result: no
configure:2874: checking for mawk
configure:2890: found /usr/bin/mawk
configure:2901: result: mawk
configure:2912: checking whether make sets $(MAKE)
configure:2934: result: yes
configure:3080: checking for g++
configure:3096: found /usr/bin/g++
configure:3107: result: g++
configure:3134: checking for C++ compiler version
configure:3143: g++ --version >&5
g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Copyright (C) 2011 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:3154: $? = 0
configure:3143: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.1/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
configure:3154: $? = 0
configure:3143: g++ -V >&5
g++: error: unrecognized option '-V'
g++: fatal error: no input files
compilation terminated.
configure:3154: $? = 4
configure:3143: g++ -qversion >&5
g++: error: unrecognized option '-qversion'
g++: fatal error: no input files
compilation terminated.
configure:3154: $? = 4
configure:3174: checking whether the C++ compiler works
configure:3196: g++ conftest.cpp >&5
configure:3200: $? = 0
configure:3248: result: yes
configure:3251: checking for C++ compiler default output file name
configure:3253: result: a.out
configure:3259: checking for suffix of executables
configure:3266: g++ -o conftest conftest.cpp >&5
configure:3270: $? = 0
configure:3292: result:
configure:3314: checking whether we are cross compiling
configure:3322: g++ -o conftest conftest.cpp >&5
configure:3326: $? = 0
configure:3333: ./conftest
configure:3337: $? = 0
configure:3352: result: no
configure:3357: checking for suffix of object files
configure:3379: g++ -c conftest.cpp >&5
configure:3383: $? = 0
configure:3404: result: o
configure:3408: checking whether we are using the GNU C++ compiler
configure:3427: g++ -c conftest.cpp >&5
configure:3427: $? = 0
configure:3436: result: yes
configure:3445: checking whether g++ accepts -g
configure:3465: g++ -c -g conftest.cpp >&5
configure:3465: $? = 0
configure:3506: result: yes
configure:3540: checking for style of include used by make
configure:3568: result: GNU
configure:3593: checking dependency style of g++
configure:3703: result: gcc3
configure:3761: checking for ranlib
configure:3777: found /usr/bin/ranlib
configure:3788: result: ranlib
configure:3839: checking build system type
configure:3853: result: i686-pc-linux-gnu
configure:3873: checking host system type
configure:3886: result: i686-pc-linux-gnu
configure:3927: checking how to print strings
configure:3954: result: printf
configure:4023: checking for gcc
configure:4039: found /usr/bin/gcc
configure:4050: result: gcc
configure:4279: checking for C compiler version
configure:4288: gcc --version >&5
gcc (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Copyright (C) 2011 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:4299: $? = 0
configure:4288: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.1/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
configure:4299: $? = 0
configure:4288: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:4299: $? = 4
configure:4288: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:4299: $? = 4
configure:4303: checking whether we are using the GNU C compiler
configure:4322: gcc -c conftest.c >&5
configure:4322: $? = 0
configure:4331: result: yes
configure:4340: checking whether gcc accepts -g
configure:4360: gcc -c -g conftest.c >&5
configure:4360: $? = 0
configure:4401: result: yes
configure:4418: checking for gcc option to accept ISO C89
configure:4482: gcc -c -g -O3 conftest.c >&5
configure:4482: $? = 0
configure:4495: result: none needed
configure:4517: checking dependency style of gcc
configure:4627: result: gcc3
configure:4642: checking for a sed that does not truncate output
configure:4706: result: /bin/sed
configure:4724: checking for grep that handles long lines and -e
configure:4782: result: /bin/grep
configure:4787: checking for egrep
configure:4849: result: /bin/grep -E
configure:4854: checking for fgrep
configure:4916: result: /bin/grep -F
configure:4951: checking for ld used by gcc
configure:5018: result: /usr/bin/ld
configure:5025: checking if the linker (/usr/bin/ld) is GNU ld
configure:5040: result: yes
configure:5052: checking for BSD- or MS-compatible name lister (nm)
configure:5101: result: /usr/bin/nm -B
configure:5231: checking the name lister (/usr/bin/nm -B) interface
configure:5238: g++ -c -g -O3 conftest.cpp >&5
configure:5241: /usr/bin/nm -B "conftest.o"
configure:5244: output
00000000 B some_variable
configure:5251: result: BSD nm
configure:5254: checking whether ln -s works
configure:5258: result: yes
configure:5266: checking the maximum length of command line arguments
configure:5391: result: 1572864
configure:5408: checking whether the shell understands some XSI constructs
configure:5418: result: yes
configure:5422: checking whether the shell understands "+="
configure:5428: result: yes
configure:5463: checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format
configure:5503: result: func_convert_file_noop
configure:5510: checking how to convert i686-pc-linux-gnu file names to toolchain format
configure:5530: result: func_convert_file_noop
configure:5537: checking for /usr/bin/ld option to reload object files
configure:5544: result: -r
configure:5618: checking for objdump
configure:5634: found /usr/bin/objdump
configure:5645: result: objdump
configure:5677: checking how to recognize dependent libraries
configure:5879: result: pass_all
configure:5964: checking for dlltool
configure:5994: result: no
configure:6024: checking how to associate runtime and link libraries
configure:6051: result: printf %s\n
configure:6112: checking for ar
configure:6128: found /usr/bin/ar
configure:6139: result: ar
configure:6176: checking for archiver @FILE support
configure:6193: g++ -c -g -O3 conftest.cpp >&5
configure:6193: $? = 0
configure:6196: ar cru libconftest.a @conftest.lst >&5
configure:6199: $? = 0
configure:6204: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:6207: $? = 1
configure:6219: result: @
configure:6277: checking for strip
configure:6293: found /usr/bin/strip
configure:6304: result: strip
configure:6376: checking for ranlib
configure:6403: result: ranlib
configure:6505: checking command to parse /usr/bin/nm -B output from gcc object
configure:6624: g++ -c -g -O3 conftest.cpp >&5
configure:6627: $? = 0
configure:6631: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:6634: $? = 0
configure:6700: g++ -o conftest -g -O3 conftest.cpp conftstm.o >&5
configure:6703: $? = 0
configure:6741: result: ok
configure:6778: checking for sysroot
configure:6808: result: no
configure:7052: checking for mt
configure:7068: found /bin/mt
configure:7079: result: mt
configure:7102: checking if mt is a manifest tool
configure:7108: mt '-?'
configure:7116: result: no
configure:7748: checking how to run the C preprocessor
configure:7779: gcc -E conftest.c
configure:7779: $? = 0
configure:7793: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:7793: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:7818: result: gcc -E
configure:7838: gcc -E conftest.c
configure:7838: $? = 0
configure:7852: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:7852: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:7881: checking for ANSI C header files
configure:7901: gcc -c -g -O3 conftest.c >&5
configure:7901: $? = 0
configure:7974: gcc -o conftest -g -O3 conftest.c >&5
configure:7974: $? = 0
configure:7974: ./conftest
configure:7974: $? = 0
configure:7985: result: yes
configure:7998: checking for sys/types.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for sys/stat.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for stdlib.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for string.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for memory.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for strings.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for inttypes.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for stdint.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:7998: checking for unistd.h
configure:7998: gcc -c -g -O3 conftest.c >&5
configure:7998: $? = 0
configure:7998: result: yes
configure:8012: checking for dlfcn.h
configure:8012: gcc -c -g -O3 conftest.c >&5
configure:8012: $? = 0
configure:8012: result: yes
configure:8209: checking for objdir
configure:8224: result: .libs
configure:8491: checking if gcc supports -fno-rtti -fno-exceptions
configure:8509: gcc -c -g -O3 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:8513: $? = 0
configure:8526: result: no
configure:8836: checking for gcc option to produce PIC
configure:8843: result: -fPIC -DPIC
configure:8851: checking if gcc PIC flag -fPIC -DPIC works
configure:8869: gcc -c -g -O3 -fPIC -DPIC -DPIC conftest.c >&5
configure:8873: $? = 0
configure:8886: result: yes
configure:8915: checking if gcc static flag -static works
configure:8943: result: yes
configure:8958: checking if gcc supports -c -o file.o
configure:8979: gcc -c -g -O3 -o out/conftest2.o conftest.c >&5
configure:8983: $? = 0
configure:9005: result: yes
configure:9013: checking if gcc supports -c -o file.o
configure:9060: result: yes
configure:9093: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
configure:10255: result: yes
configure:10292: checking whether -lc should be explicitly linked in
configure:10300: gcc -c -g -O3 conftest.c >&5
configure:10303: $? = 0
configure:10318: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
configure:10321: $? = 0
configure:10335: result: no
configure:10500: checking dynamic linker characteristics
configure:11015: gcc -o conftest -g -O3 -Wl,-rpath -Wl,/foo conftest.c >&5
configure:11015: $? = 0
configure:11249: result: GNU/Linux ld.so
configure:11356: checking how to hardcode library paths into programs
configure:11381: result: immediate
configure:11921: checking whether stripping libraries is possible
configure:11926: result: yes
configure:11961: checking if libtool supports shared libraries
configure:11963: result: yes
configure:11966: checking whether to build shared libraries
configure:11987: result: yes
configure:11990: checking whether to build static libraries
configure:11994: result: yes
configure:12017: checking how to run the C++ preprocessor
configure:12044: g++ -E conftest.cpp
configure:12044: $? = 0
configure:12058: g++ -E conftest.cpp
conftest.cpp:23:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:12058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12083: result: g++ -E
configure:12103: g++ -E conftest.cpp
configure:12103: $? = 0
configure:12117: g++ -E conftest.cpp
conftest.cpp:23:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:12117: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12287: checking for ld used by g++
configure:12354: result: /usr/bin/ld
configure:12361: checking if the linker (/usr/bin/ld) is GNU ld
configure:12376: result: yes
configure:12431: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:13435: result: yes
configure:13470: g++ -c -g -O3 conftest.cpp >&5
configure:13473: $? = 0
configure:13993: checking for g++ option to produce PIC
configure:14000: result: -fPIC -DPIC
configure:14008: checking if g++ PIC flag -fPIC -DPIC works
configure:14026: g++ -c -g -O3 -fPIC -DPIC -DPIC conftest.cpp >&5
configure:14030: $? = 0
configure:14043: result: yes
configure:14066: checking if g++ static flag -static works
configure:14094: result: yes
configure:14106: checking if g++ supports -c -o file.o
configure:14127: g++ -c -g -O3 -o out/conftest2.o conftest.cpp >&5
configure:14131: $? = 0
configure:14153: result: yes
configure:14158: checking if g++ supports -c -o file.o
configure:14205: result: yes
configure:14235: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:14272: result: yes
configure:14415: checking dynamic linker characteristics
configure:15098: result: GNU/Linux ld.so
configure:15151: checking how to hardcode library paths into programs
configure:15176: result: immediate
configure:15244: checking for 64-bit OS
configure:15254: gcc -o conftest -g -O3 conftest.c >&5
configure:15254: $? = 0
configure:15254: ./conftest
configure:15254: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| int main () {
| if (sizeof(long) == 8) { return 0; } return 1; }
configure:15263: result: no
configure:15278: checking for library containing dlopen
configure:15309: g++ -o conftest -g -O3 conftest.cpp >&5
/tmp/ccLUK4pA.o: In function `main':
/home/marc/release/gdl-0.9.2/conftest.cpp:34: undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure:15309: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| /* 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 dlopen ();
| int
| main ()
| {
| return dlopen ();
| ;
| return 0;
| }
configure:15309: g++ -o conftest -g -O3 conftest.cpp -ldl >&5
configure:15309: $? = 0
configure:15326: result: -ldl
configure:15364: checking for malloc_zone_statistics
configure:15364: g++ -o conftest -g -O3 conftest.cpp -ldl -ldl >&5
/tmp/ccYDUFFY.o: In function `main':
/home/marc/release/gdl-0.9.2/conftest.cpp:57: undefined reference to `malloc_zone_statistics'
collect2: ld returned 1 exit status
configure:15364: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| /* Define malloc_zone_statistics to an innocuous variant, in case <limits.h> declares malloc_zone_statistics.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define malloc_zone_statistics innocuous_malloc_zone_statistics
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char malloc_zone_statistics (); 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 malloc_zone_statistics
|
| /* 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 malloc_zone_statistics ();
| /* 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_malloc_zone_statistics || defined __stub___malloc_zone_statistics
| choke me
| #endif
|
| int
| main ()
| {
| return malloc_zone_statistics ();
| ;
| return 0;
| }
configure:15364: result: no
configure:15364: checking for sbrk
configure:15364: g++ -o conftest -g -O3 conftest.cpp -ldl -ldl >&5
configure:15364: $? = 0
configure:15364: result: yes
configure:15364: checking for mallinfo
configure:15364: g++ -o conftest -g -O3 conftest.cpp -ldl -ldl >&5
configure:15364: $? = 0
configure:15364: result: yes
configure:15377: checking malloc.h usability
configure:15377: g++ -c -g -O3 conftest.cpp >&5
configure:15377: $? = 0
configure:15377: result: yes
configure:15377: checking malloc.h presence
configure:15377: g++ -E conftest.cpp
configure:15377: $? = 0
configure:15377: result: yes
configure:15377: checking for malloc.h
configure:15377: result: yes
configure:15377: checking malloc/malloc.h usability
configure:15377: g++ -c -g -O3 conftest.cpp >&5
conftest.cpp:59:27: fatal error: malloc/malloc.h: No such file or directory
compilation terminated.
configure:15377: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| #define HAVE_SBRK 1
| #define HAVE_MALLINFO 1
| #define HAVE_MALLOC_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 <malloc/malloc.h>
configure:15377: result: no
configure:15377: checking malloc/malloc.h presence
configure:15377: g++ -E conftest.cpp
conftest.cpp:26:27: fatal error: malloc/malloc.h: No such file or directory
compilation terminated.
configure:15377: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "gdl"
| #define PACKAGE_TARNAME "gdl"
| #define PACKAGE_VERSION "0.9.2"
| #define PACKAGE_STRING "gdl 0.9.2"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "gdl"
| #define VERSION "0.9.2"
| #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
| #define LT_OBJDIR ".libs/"
| #define HAVE_SBRK 1
| #define HAVE_MALLINFO 1
| #define HAVE_MALLOC_H 1
| /* end confdefs.h. */
| #include <malloc/malloc.h>
configure:15377: result: no
configure:15377: checking for malloc/malloc.h
configure:15377: result: no
configure:15390: checking locale.h usability
configure:15390: g++ -c -g -O3 conftest.cpp >&5
configure:15390: $? = 0
configure:15390: result: yes
configure:15390: checking locale.h presence
configure:15390: g++ -E conftest.cpp
configure:15390: $? = 0
configure:15390: result: yes
configure:15390: checking for locale.h
configure:15390: result: yes
configure:15403: checking for nexttoward
configure:15403: g++ -o conftest -g -O3 conftest.cpp -ldl -ldl >&5
configure:15403: $? = 0
configure:15403: result: yes
configure:15415: checking ext/stdio_filebuf.h usability
configure:15415: g++ -c -g -O3 conftest.cpp >&5
configure:15415: $? = 0
configure:15415: result: yes
configure:15415: checking ext/stdio_filebuf.h presence
configure:15415: g++ -E conftest.cpp
configure:15415: $? = 0
configure:15415: result: yes
configure:15415: checking for ext/stdio_filebuf.h
configure:15415: result: yes
configure:15436: checking for initscr in -lncurses
configure:15461: g++ -o conftest -g -O3 conftest.cpp -lncurses -ldl -ldl >&5
configure:15461: $? = 0
configure:15470: result: yes
configure:15543: checking for stifle_history in -lreadline
configure:15568: g++ -o conftest -g -O3 conftest.cpp -lreadline -lncurses -ldl -ldl -lreadline >&5
configure:15568: $? = 0
configure:15577: result: yes
configure:15596: checking for rl_get_screen_size in -lreadline
configure:15621: g++ -o conftest -g -O3 conftest.cpp -lreadline -lncurses -ldl -ldl -lreadline >&5
configure:15621: $? = 0
configure:15630: result: yes
configure:15673: checking for gzopen in -lz
configure:15698: g++ -o conftest -g -O3 conftest.cpp -lz -lncurses -ldl -ldl -lreadline -lz >&5
configure:15698: $? = 0
configure:15707: result: yes
configure:15739: checking omp.h usability
configure:15739: g++ -c -g -O3 conftest.cpp >&5
configure:15739: $? = 0
configure:15739: result: yes
configure:15739: checking omp.h presence
configure:15739: g++ -E conftest.cpp
configure:15739: $? = 0
configure:15739: result: yes
configure:15739: checking for omp.h
configure:15739: result: yes
configure:15797: checking for gsl_ran_binomial_knuth in -lgsl
configure:15822: g++ -o conftest -g -O3 -fopenmp -fopenmp conftest.cpp -lgsl -lncurses -ldl -ldl -lreadline -lz -lgsl -lgslcblas >&5
configure:15822: $? = 0
configure:15831: result: yes
configure:15850: checking for cblas_drot in -lgslcblas
configure:15875: g++ -o conftest -g -O3 -fopenmp -fopenmp conftest.cpp -lgslcblas -lgsl -lncurses -ldl -ldl -lreadline -lz -lgsl -lgslcblas >&5
configure:15875: $? = 0
configure:15884: result: yes
configure:15942: checking for plsexit in -lplplotcxxd
configure:15967: g++ -o conftest -g -O3 -fopenmp -fopenmp conftest.cpp -lplplotcxxd -lgslcblas -lgsl -lncurses -ldl -ldl -lreadline -lz -lgsl -lgslcblas -lplplotd -lplplotcxxd >&5
configure:15967: $? = 0
configure:15976: result: yes
configure:15996: checking for plGetDrvDir in -lplplotd
configure:16021: g++ -o conftest -g -O3 -fopenmp -fopenmp conftest.cpp -lplplotd -lgslcblas -lgsl -lncurses -ldl -ldl -lreadline -lz -lgsl -lgslcblas -lplplotd -lplplotcxxd >&5
configure:16021: $? = 0
configure:16030: result: yes
configure:16060: checking for wx-config
configure:16091: result: no
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
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_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_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_mallinfo=yes
ac_cv_func_malloc_zone_statistics=no
ac_cv_func_nexttoward=yes
ac_cv_func_sbrk=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_ext_stdio_filebuf_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_malloc_malloc_h=no
ac_cv_header_memory_h=yes
ac_cv_header_omp_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_host=i686-pc-linux-gnu
ac_cv_lib_gsl_gsl_ran_binomial_knuth=yes
ac_cv_lib_gslcblas_cblas_drot=yes
ac_cv_lib_ncurses_initscr=yes
ac_cv_lib_plplotcxxd_plsexit=yes
ac_cv_lib_plplotd_plGetDrvDir=yes
ac_cv_lib_readline_rl_get_screen_size=yes
ac_cv_lib_readline_stifle_history=yes
ac_cv_lib_z_gzopen=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_path_wxConfig=no
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_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_search_dlopen=-ldl
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
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_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home/marc/release/gdl-0.9.2/missing --run aclocal-1.11'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/marc/release/gdl-0.9.2/missing --run tar'
AR='ar'
AUTOCONF='${SHELL} /home/marc/release/gdl-0.9.2/missing --run autoconf'
AUTOHEADER='${SHELL} /home/marc/release/gdl-0.9.2/missing --run autoheader'
AUTOMAKE='${SHELL} /home/marc/release/gdl-0.9.2/missing --run automake-1.11'
AWK='mawk'
BUILDASLIBRARY_FALSE=''
BUILDASLIBRARY_TRUE='#'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O3'
CPP='gcc -E'
CPPFLAGS=' -fopenmp'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O3'
CYGPATH_W='echo'
DARWIN_FALSE=''
DARWIN_TRUE=''
DEFS=''
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEC_PREFIX=''
EXEEXT=''
EXT_INCLUDES=''
EXT_LIBS=''
FGREP='/bin/grep -F'
GDLDATADIR=''
GREP='/bin/grep'
HAVE_64BIT_OS=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/usr/bin/ld'
LDFLAGS=' -fopenmp'
LIBOBJS=''
LIBS='-lgslcblas -lgsl -lncurses -ldl -ldl -lreadline -lz -lgsl -lgslcblas -lplplotd -lplplotcxxd'
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /home/marc/release/gdl-0.9.2/missing --run makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
MagickConfig=''
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='gdl'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='gdl'
PACKAGE_STRING='gdl 0.9.2'
PACKAGE_TARNAME='gdl'
PACKAGE_URL=''
PACKAGE_VERSION='0.9.2'
PATH_SEPARATOR=':'
PYTHON=''
PYTHON_EXEC_PREFIX=''
PYTHON_PLATFORM=''
PYTHON_PREFIX=''
PYTHON_VERSION=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
VERSION='0.9.2'
XMKMF=''
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/marc/release/gdl-0.9.2/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
nc_config=''
oldincludedir='/usr/include'
pdfdir='${docdir}'
pkgpyexecdir=''
pkgpythondir=''
prefix='NONE'
program_transform_name='s,x,x,'
psdir='${docdir}'
pyexecdir=''
pythondir=''
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
wxConfig='no'
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "gdl"
#define PACKAGE_TARNAME "gdl"
#define PACKAGE_VERSION "0.9.2"
#define PACKAGE_STRING "gdl 0.9.2"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define PACKAGE "gdl"
#define VERSION "0.9.2"
#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
#define LT_OBJDIR ".libs/"
#define HAVE_SBRK 1
#define HAVE_MALLINFO 1
#define HAVE_MALLOC_H 1
#define HAVE_LOCALE_H 1
#define HAVE_NEXTTOWARD 1
#define HAVE_EXT_STDIO_FILEBUF_H 1
#define HAVE_LIBNCURSES 1
#define HAVE_LIBREADLINE 1
#define RL_GET_SCREEN_SIZE 1
#define HAVE_LIBZ 1
#define HAVE_OMP_H 1
#define HAVE_LIBGSL 1
#define HAVE_LIBGSLCBLAS 1
#define HAVE_LIBPLPLOTCXXD 1
configure: exit 255
|