Hi, I just tried to build ilmbase on OSX. Make fails immediately with the following message. Below is the config.log
Making all in Half if g++ -DHAVE_CONFIG_H -I. -I. -I../config -I../config -pipe -g -O2 -D_THREAD_SAFE -Wno-long-double -MT eLut.o -MD -MP -MF ".deps/eLut.Tpo" -c -o eLut.o eLut.cpp; \ then mv -f ".deps/eLut.Tpo" ".deps/eLut.Po"; else rm -f ".deps/eLut.Tpo"; exit 1; fi cc1plus: error: unrecognized command line option "-Wno-long-double" make[1]: *** [eLut.o] Error 1 make: *** [all-recursive] Error 1 -------------------------------------- config.log This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by IlmBase configure 1.0.2, which was generated by GNU Autoconf 2.59. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = bleeps.local uname -m = i386 uname -r = 10.4.0 uname -s = Darwin uname -v = Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386 /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = Mach kernel version: Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386 Kernel configured for up to 4 processors. 2 processors are physically available. 4 processors are logically available. Processor type: i486 (Intel 80486) Processors active: 0 1 2 3 Primary memory available: 4.00 gigabytes Default processor set: 132 tasks, 612 threads, 4 processors Load average: 1.25, Mach factor: 2.74 /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /opt/local/bin PATH: /opt/local/sbin PATH: /usr/bin PATH: /bin PATH: /usr/sbin PATH: /sbin PATH: /usr/local/bin PATH: /usr/X11/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1554: checking build system type configure:1572: result: i686-apple-darwin10.4.0 configure:1580: checking host system type configure:1594: result: i686-apple-darwin10.4.0 configure:1619: checking for a BSD-compatible install configure:1674: result: /usr/bin/install -c configure:1685: checking whether build environment is sane configure:1728: result: yes configure:1793: checking for gawk configure:1822: result: no configure:1793: checking for mawk configure:1822: result: no configure:1793: checking for nawk configure:1822: result: no configure:1793: checking for awk configure:1809: found /usr/bin/awk configure:1819: result: awk configure:1829: checking whether make sets $(MAKE) configure:1849: result: yes configure:2016: checking whether to enable maintainer-specific portions of Makefiles configure:2025: result: no configure:2100: checking for g++ configure:2116: found /usr/bin/g++ configure:2126: result: g++ configure:2142: checking for C++ compiler version configure:2145: g++ --version </dev/null >&5 i686-apple-darwin10-g++-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5659) Copyright (C) 2007 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:2148: $? = 0 configure:2150: g++ -v </dev/null >&5 Using built-in specs. Target: i686-apple-darwin10 Configured with: /var/tmp/gcc/gcc-5659~1/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 Thread model: posix gcc version 4.2.1 (Apple Inc. build 5659) configure:2153: $? = 0 configure:2155: g++ -V </dev/null >&5 g++-4.2: argument to `-V' is missing configure:2158: $? = 1 configure:2181: checking for C++ compiler default output file name configure:2184: g++ conftest.cc >&5 configure:2187: $? = 0 configure:2233: result: a.out configure:2238: checking whether the C++ compiler works configure:2244: ./a.out configure:2247: $? = 0 configure:2264: result: yes configure:2271: checking whether we are cross compiling configure:2273: result: no configure:2276: checking for suffix of executables configure:2278: g++ -o conftest conftest.cc >&5 configure:2281: $? = 0 configure:2306: result: configure:2312: checking for suffix of object files configure:2333: g++ -c conftest.cc >&5 configure:2336: $? = 0 configure:2358: result: o configure:2362: checking whether we are using the GNU C++ compiler configure:2386: g++ -c conftest.cc >&5 configure:2392: $? = 0 configure:2396: test -z || test ! -s conftest.err configure:2399: $? = 0 configure:2402: test -s conftest.o configure:2405: $? = 0 configure:2418: result: yes configure:2424: checking whether g++ accepts -g configure:2445: g++ -c -g conftest.cc >&5 configure:2451: $? = 0 configure:2455: test -z || test ! -s conftest.err configure:2458: $? = 0 configure:2461: test -s conftest.o configure:2464: $? = 0 configure:2475: result: yes configure:2517: g++ -c -g -O2 conftest.cc >&5 configure:2523: $? = 0 configure:2527: test -z || test ! -s conftest.err configure:2530: $? = 0 configure:2533: test -s conftest.o configure:2536: $? = 0 configure:2562: g++ -c -g -O2 conftest.cc >&5 conftest.cc: In function 'int main()': conftest.cc:15: error: 'exit' was not declared in this scope configure:2568: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | /* end confdefs.h. */ | | int | main () | { | exit (42); | ; | return 0; | } configure:2517: g++ -c -g -O2 conftest.cc >&5 conftest.cc:11: error: 'void std::exit(int)' should have been declared inside 'std' In file included from conftest.cc:12: /usr/include/stdlib.h:159: error: declaration of 'void std::exit(int)' throws different exceptions conftest.cc:11: error: from previous declaration 'void std::exit(int) throw ()' configure:2523: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | /* end confdefs.h. */ | extern "C" void std::exit (int) throw (); using std::exit; | #include <stdlib.h> | int | main () | { | exit (42); | ; | return 0; | } configure:2517: g++ -c -g -O2 conftest.cc >&5 conftest.cc:11: error: 'void std::exit(int)' should have been declared inside 'std' configure:2523: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | /* end confdefs.h. */ | extern "C" void std::exit (int); using std::exit; | #include <stdlib.h> | int | main () | { | exit (42); | ; | return 0; | } configure:2517: g++ -c -g -O2 conftest.cc >&5 In file included from conftest.cc:12: /usr/include/stdlib.h:159: error: declaration of 'void exit(int)' throws different exceptions conftest.cc:11: error: from previous declaration 'void exit(int) throw ()' configure:2523: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | /* end confdefs.h. */ | extern "C" void exit (int) throw (); | #include <stdlib.h> | int | main () | { | exit (42); | ; | return 0; | } configure:2517: g++ -c -g -O2 conftest.cc >&5 configure:2523: $? = 0 configure:2527: test -z || test ! -s conftest.err configure:2530: $? = 0 configure:2533: test -s conftest.o configure:2536: $? = 0 configure:2562: g++ -c -g -O2 conftest.cc >&5 configure:2568: $? = 0 configure:2572: test -z || test ! -s conftest.err configure:2575: $? = 0 configure:2578: test -s conftest.o configure:2581: $? = 0 configure:2615: checking for style of include used by make configure:2643: result: GNU configure:2671: checking dependency style of g++ configure:2761: result: gcc3 configure:2791: checking for a BSD-compatible install configure:2846: result: /usr/bin/install -c configure:2903: checking for gcc configure:2919: found /usr/bin/gcc configure:2929: result: gcc configure:3173: checking for C compiler version configure:3176: gcc --version </dev/null >&5 i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5659) Copyright (C) 2007 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:3179: $? = 0 configure:3181: gcc -v </dev/null >&5 Using built-in specs. Target: i686-apple-darwin10 Configured with: /var/tmp/gcc/gcc-5659~1/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 Thread model: posix gcc version 4.2.1 (Apple Inc. build 5659) configure:3184: $? = 0 configure:3186: gcc -V </dev/null >&5 gcc-4.2: argument to `-V' is missing configure:3189: $? = 1 configure:3192: checking whether we are using the GNU C compiler configure:3216: gcc -c conftest.c >&5 configure:3222: $? = 0 configure:3226: test -z || test ! -s conftest.err configure:3229: $? = 0 configure:3232: test -s conftest.o configure:3235: $? = 0 configure:3248: result: yes configure:3254: checking whether gcc accepts -g configure:3275: gcc -c -g conftest.c >&5 configure:3281: $? = 0 configure:3285: test -z || test ! -s conftest.err configure:3288: $? = 0 configure:3291: test -s conftest.o configure:3294: $? = 0 configure:3305: result: yes configure:3322: checking for gcc option to accept ANSI C configure:3392: gcc -c -g -O2 conftest.c >&5 configure:3398: $? = 0 configure:3402: test -z || test ! -s conftest.err configure:3405: $? = 0 configure:3408: test -s conftest.o configure:3411: $? = 0 configure:3429: result: none needed configure:3447: gcc -c -g -O2 conftest.c >&5 conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me' configure:3453: $? = 1 configure: failed program was: | #ifndef __cplusplus | choke me | #endif configure:3588: checking dependency style of gcc configure:3678: result: gcc3 configure:3695: checking whether ln -s works configure:3699: result: yes configure:3778: checking for a sed that does not truncate output configure:3834: result: /usr/bin/sed configure:3837: checking for egrep configure:3847: result: grep -E configure:3863: checking for ld used by gcc configure:3930: result: /usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld configure:3939: checking if the linker (/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld) is GNU ld configure:3954: result: no configure:3959: checking for /usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld option to reload object files configure:3966: result: -r configure:3984: checking for BSD-compatible nm configure:4033: result: /usr/bin/nm configure:4037: checking how to recognise dependent libraries configure:4213: result: pass_all configure:4450: checking how to run the C preprocessor configure:4485: gcc -E conftest.c configure:4491: $? = 0 configure:4523: gcc -E conftest.c conftest.c:14:28: error: ac_nonexistent.h: No such file or directory configure:4529: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | #ifdef __cplusplus | extern "C" void exit (int); | #endif | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4568: result: gcc -E configure:4592: gcc -E conftest.c configure:4598: $? = 0 configure:4630: gcc -E conftest.c conftest.c:14:28: error: ac_nonexistent.h: No such file or directory configure:4636: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | #ifdef __cplusplus | extern "C" void exit (int); | #endif | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4680: checking for ANSI C header files configure:4705: gcc -c -g -O2 conftest.c >&5 configure:4711: $? = 0 configure:4715: test -z || test ! -s conftest.err configure:4718: $? = 0 configure:4721: test -s conftest.o configure:4724: $? = 0 configure:4813: gcc -o conftest -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:31: warning: incompatible implicit declaration of built-in function 'exit' configure:4816: $? = 0 configure:4818: ./conftest configure:4821: $? = 0 configure:4836: result: yes configure:4860: checking for sys/types.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for sys/stat.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for stdlib.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for string.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for memory.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for strings.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for inttypes.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for stdint.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4860: checking for unistd.h configure:4876: gcc -c -g -O2 conftest.c >&5 configure:4882: $? = 0 configure:4886: test -z || test ! -s conftest.err configure:4889: $? = 0 configure:4892: test -s conftest.o configure:4895: $? = 0 configure:4906: result: yes configure:4932: checking dlfcn.h usability configure:4944: gcc -c -g -O2 conftest.c >&5 configure:4950: $? = 0 configure:4954: test -z || test ! -s conftest.err configure:4957: $? = 0 configure:4960: test -s conftest.o configure:4963: $? = 0 configure:4973: result: yes configure:4977: checking dlfcn.h presence configure:4987: gcc -E conftest.c configure:4993: $? = 0 configure:5013: result: yes configure:5048: checking for dlfcn.h configure:5055: result: yes configure:5078: checking how to run the C++ preprocessor configure:5109: g++ -E conftest.cc configure:5115: $? = 0 configure:5147: g++ -E conftest.cc conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory configure:5153: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | #ifdef __cplusplus | extern "C" void exit (int); | #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 HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:5192: result: g++ -E configure:5216: g++ -E conftest.cc configure:5222: $? = 0 configure:5254: g++ -E conftest.cc conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory configure:5260: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | #ifdef __cplusplus | extern "C" void exit (int); | #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 HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:5357: checking for g77 configure:5386: result: no configure:5357: checking for f77 configure:5386: result: no configure:5357: checking for xlf configure:5386: result: no configure:5357: checking for frt configure:5386: result: no configure:5357: checking for pgf77 configure:5386: result: no configure:5357: checking for fort77 configure:5386: result: no configure:5357: checking for fl32 configure:5386: result: no configure:5357: checking for af77 configure:5386: result: no configure:5357: checking for f90 configure:5386: result: no configure:5357: checking for xlf90 configure:5386: result: no configure:5357: checking for pgf90 configure:5386: result: no configure:5357: checking for epcf90 configure:5386: result: no configure:5357: checking for f95 configure:5386: result: no configure:5357: checking for fort configure:5386: result: no configure:5357: checking for xlf95 configure:5386: result: no configure:5357: checking for ifc configure:5386: result: no configure:5357: checking for efc configure:5386: result: no configure:5357: checking for pgf95 configure:5386: result: no configure:5357: checking for lf95 configure:5386: result: no configure:5357: checking for gfortran configure:5386: result: no configure:5398: checking for Fortran 77 compiler version configure:5401: --version </dev/null >&5 ./configure: line 5402: --version: command not found configure:5404: $? = 127 configure:5406: -v </dev/null >&5 ./configure: line 5407: -v: command not found configure:5409: $? = 127 configure:5411: -V </dev/null >&5 ./configure: line 5412: -V: command not found configure:5414: $? = 127 configure:5422: checking whether we are using the GNU Fortran 77 compiler configure:5436: -c conftest.F >&5 ./configure: line 5437: -c: command not found configure:5442: $? = 127 configure: failed program was: | program main | #ifndef __GNUC__ | choke me | #endif | | end configure:5468: result: no configure:5474: checking whether accepts -g configure:5486: -c -g conftest.f >&5 ./configure: line 5487: -c: command not found configure:5492: $? = 127 configure: failed program was: | program main | | end configure:5517: result: no configure:5547: checking the maximum length of command line arguments configure:5656: result: 196608 configure:5667: checking command to parse /usr/bin/nm output from gcc object configure:5772: gcc -c -g -O2 conftest.c >&5 configure:5775: $? = 0 configure:5779: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:5782: $? = 0 cannot find nm_test_var in conftest.nm configure:5772: gcc -c -g -O2 conftest.c >&5 configure:5775: $? = 0 configure:5779: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm configure:5782: $? = 0 configure:5834: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 configure:5837: $? = 0 configure:5875: result: ok configure:5879: checking for objdir configure:5894: result: .libs configure:5984: checking for ar configure:6000: found /usr/bin/ar configure:6011: result: ar configure:6064: checking for ranlib configure:6080: found /usr/bin/ranlib configure:6091: result: ranlib configure:6144: checking for strip configure:6160: found /usr/bin/strip configure:6171: result: strip configure:6443: checking if gcc supports -fno-rtti -fno-exceptions configure:6461: 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:6465: $? = 0 configure:6478: result: no configure:6493: checking for gcc option to produce PIC configure:6703: result: -fno-common configure:6711: checking if gcc PIC flag -fno-common works configure:6729: gcc -c -g -O2 -fno-common -DPIC conftest.c >&5 configure:6733: $? = 0 configure:6746: result: yes configure:6774: checking if gcc static flag -static works configure:6802: result: no configure:6812: checking if gcc supports -c -o file.o configure:6833: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:6837: $? = 0 configure:6859: result: yes configure:6885: checking whether the gcc linker (/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld) supports shared libraries configure:7843: result: yes configure:7910: checking dynamic linker characteristics configure:8519: result: darwin10.4.0 dyld configure:8528: checking how to hardcode library paths into programs configure:8553: result: immediate configure:8567: checking whether stripping libraries is possible configure:8580: result: yes configure:9406: checking if libtool supports shared libraries configure:9408: result: yes configure:9411: checking whether to build shared libraries configure:9432: result: yes configure:9435: checking whether to build static libraries configure:9439: result: yes configure:9531: creating libtool configure:10122: checking for ld used by g++ configure:10189: result: /usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld configure:10198: checking if the linker (/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld) is GNU ld configure:10213: result: no configure:10264: checking whether the g++ linker (/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld) supports shared libraries configure:11202: result: yes configure:11220: g++ -c -g -O2 conftest.cpp >&5 configure:11223: $? = 0 configure:11342: checking for g++ option to produce PIC configure:11616: result: -fno-common configure:11624: checking if g++ PIC flag -fno-common works configure:11642: g++ -c -g -O2 -fno-common -DPIC conftest.cpp >&5 configure:11646: $? = 0 configure:11659: result: yes configure:11687: checking if g++ static flag -static works configure:11715: result: no configure:11725: checking if g++ supports -c -o file.o configure:11746: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 configure:11750: $? = 0 configure:11772: result: yes configure:11798: checking whether the g++ linker (/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld) supports shared libraries configure:11823: result: yes configure:11890: checking dynamic linker characteristics configure:12499: result: darwin10.4.0 dyld configure:12508: checking how to hardcode library paths into programs configure:12533: result: immediate configure:18737: checking whether make sets $(MAKE) configure:18757: result: yes configure:18977: checking for the pthreads library -lpthreads configure:19015: gcc -o conftest -g -O2 conftest.c -lpthreads >&5 ld: library not found for -lpthreads collect2: ld returned 1 exit status configure:19021: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | #ifdef __cplusplus | extern "C" void exit (int); | #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 HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include <pthread.h> | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:19048: result: no configure:18923: checking whether pthreads work without any flags configure:19015: gcc -o conftest -g -O2 conftest.c >&5 configure:19021: $? = 0 configure:19025: test -z || test ! -s conftest.err configure:19028: $? = 0 configure:19031: test -s conftest configure:19034: $? = 0 configure:19048: result: yes configure:19067: checking for joinable pthread attribute configure:19087: gcc -o conftest -g -O2 conftest.c >&5 configure:19093: $? = 0 configure:19097: test -z || test ! -s conftest.err configure:19100: $? = 0 configure:19103: test -s conftest configure:19106: $? = 0 configure:19117: result: PTHREAD_CREATE_JOINABLE configure:19127: checking if more special flags are required for pthreads configure:19134: result: -D_THREAD_SAFE configure:19146: checking for cc_r configure:19173: result: gcc configure:19223: checking semaphore.h usability configure:19235: gcc -c -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:19241: $? = 0 configure:19245: test -z || test ! -s conftest.err configure:19248: $? = 0 configure:19251: test -s conftest.o configure:19254: $? = 0 configure:19264: result: yes configure:19268: checking semaphore.h presence configure:19278: gcc -E conftest.c configure:19284: $? = 0 configure:19304: result: yes configure:19339: checking for semaphore.h configure:19346: result: yes configure:19355: checking for library containing sem_init configure:19385: gcc -o conftest -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:19391: $? = 0 configure:19395: test -z || test ! -s conftest.err configure:19398: $? = 0 configure:19401: test -s conftest configure:19404: $? = 0 configure:19474: result: none required configure:19479: checking whether to use POSIX unnamed semaphores configure:19516: gcc -o conftest -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:19519: $? = 0 configure:19521: ./conftest configure:19524: $? = 1 configure: program exited with status 1 configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "IlmBase" | #define PACKAGE_TARNAME "ilmbase" | #define PACKAGE_VERSION "1.0.2" | #define PACKAGE_STRING "IlmBase 1.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "ilmbase" | #define VERSION "1.0.2" | #ifdef __cplusplus | extern "C" void exit (int); | #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 HAVE_DLFCN_H 1 | #define HAVE_PTHREAD 1 | #define HAVE_SEMAPHORE_H 1 | /* end confdefs.h. */ | #include <semaphore.h> | int | main () | { | | sem_t mysem; | if (sem_init (&mysem, 1, 1) == 0) | { | if (sem_wait (&mysem) == 0) | { | sem_post (&mysem); | sem_destroy (&mysem); | return 0; | } | } | return 1; | | ; | return 0; | } | configure:19537: result: no (pshared not usable) configure:19580: multithread true, LIBS = , CC = gcc, CXXFLAGS = -g -O2 -D_THREAD_SAFE configure:19584: checking for ANSI C header files configure:19740: result: yes configure:19765: checking limits.h usability configure:19777: gcc -c -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:19783: $? = 0 configure:19787: test -z || test ! -s conftest.err configure:19790: $? = 0 configure:19793: test -s conftest.o configure:19796: $? = 0 configure:19806: result: yes configure:19810: checking limits.h presence configure:19820: gcc -E conftest.c configure:19826: $? = 0 configure:19846: result: yes configure:19881: checking for limits.h configure:19888: result: yes configure:19756: checking for unistd.h configure:19761: result: yes configure:19902: checking for an ANSI C-conforming const configure:19969: gcc -c -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:19975: $? = 0 configure:19979: test -z || test ! -s conftest.err configure:19982: $? = 0 configure:19985: test -s conftest.o configure:19988: $? = 0 configure:19999: result: yes configure:20009: checking for inline configure:20030: gcc -c -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:20036: $? = 0 configure:20040: test -z || test ! -s conftest.err configure:20043: $? = 0 configure:20046: test -s conftest.o configure:20049: $? = 0 configure:20061: result: inline configure:20080: checking for size_t configure:20104: gcc -c -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:20110: $? = 0 configure:20114: test -z || test ! -s conftest.err configure:20117: $? = 0 configure:20120: test -s conftest.o configure:20123: $? = 0 configure:20134: result: yes configure:20151: checking for strerror configure:20208: gcc -o conftest -g -O2 -D_THREAD_SAFE conftest.c >&5 configure:20214: $? = 0 configure:20218: test -z || test ! -s conftest.err configure:20221: $? = 0 configure:20224: test -s conftest configure:20227: $? = 0 configure:20239: result: yes configure:20251: checking for complete iomanip support in C++ standard library configure:20281: g++ -c -g -O2 -D_THREAD_SAFE conftest.cc >&5 configure:20287: $? = 0 configure:20291: test -z || test ! -s conftest.err configure:20294: $? = 0 configure:20297: test -s conftest.o configure:20300: $? = 0 configure:20312: result: yes configure:20322: checking for gcc optimization flags configure:20342: gcc -c -g -O2 -D_THREAD_SAFE -pipe conftest.c >&5 configure:20348: $? = 0 configure:20352: test -z || test ! -s conftest.err configure:20355: $? = 0 configure:20358: test -s conftest.o configure:20361: $? = 0 configure:20372: result: -pipe configure:20575: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by IlmBase config.status 1.0.2, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on bleeps.local config.status:736: creating Makefile config.status:736: creating IlmBase.pc config.status:736: creating config/Makefile config.status:736: creating Half/Makefile config.status:736: creating HalfTest/Makefile config.status:736: creating Iex/Makefile config.status:736: creating IexTest/Makefile config.status:736: creating IlmThread/Makefile config.status:736: creating Imath/Makefile config.status:736: creating ImathTest/Makefile config.status:736: creating vc/Makefile config.status:840: creating config/IlmBaseConfig.h config.status:1142: executing depfiles commands configure:21917: result: --------------------------------------------- Summary for IlmBase features: OS X architectures default OS X SDK default OS X two-way universal build (deprecated) no --------------------------------------------- ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-apple-darwin10.4.0 ac_cv_build_alias=i686-apple-darwin10.4.0 ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_c_inline=inline 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_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_func_strerror=yes ac_cv_header_dlfcn_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_limits_h=yes ac_cv_header_memory_h=yes ac_cv_header_semaphore_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-apple-darwin10.4.0 ac_cv_host_alias=i686-apple-darwin10.4.0 ac_cv_objext=o ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AWK=awk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_PTHREAD_CC=gcc 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_search_sem_init='none required' ac_cv_type_size_t=yes 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/libexec/gcc/i686-apple-darwin10/4.2.1/ld lt_cv_path_LDCXX=/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld lt_cv_path_NM=/usr/bin/nm lt_cv_path_SED=/usr/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=no lt_cv_prog_gnu_ldcxx=no lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_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=196608 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/^.*[ ]\\([BCDEGRST][BCDEGRST]*\\)[ ][ ]*_\\([_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'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /Users/wesleysmith/Downloads/ilmbase-1.0.2/missing --run aclocal-1.9' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /Users/wesleysmith/Downloads/ilmbase-1.0.2/missing --run tar' AM_CFLAGS='-pipe' AM_CXXFLAGS='-pipe' AR='ar' AUTOCONF='${SHELL} /Users/wesleysmith/Downloads/ilmbase-1.0.2/missing --run autoconf' AUTOHEADER='${SHELL} /Users/wesleysmith/Downloads/ilmbase-1.0.2/missing --run autoheader' AUTOMAKE='${SHELL} /Users/wesleysmith/Downloads/ilmbase-1.0.2/missing --run automake-1.9' AWK='awk' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -D_THREAD_SAFE ' CPP='gcc -E' CPPFLAGS='' CXX='g++' CXXCPP='g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2 -D_THREAD_SAFE -Wno-long-double' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO='/bin/echo' ECHO_C='ECHO_N='' ECHO_T='' EGREP='grep -E' EXEEXT='' F77='' FFLAGS='' ILMBASE_VERSION='1.0.2' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' LDFLAGS='' LIBOBJS='' LIBS=' ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIBTOOL_VERSION='6:0:0' LN_S='ln -s' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /Users/wesleysmith/Downloads/ilmbase-1.0.2/missing --run makeinfo' OBJEXT='o' PACKAGE='ilmbase' PACKAGE_BUGREPORT='' PACKAGE_NAME='IlmBase' PACKAGE_STRING='IlmBase 1.0.2' PACKAGE_TARNAME='ilmbase' PACKAGE_VERSION='1.0.2' PATH_SEPARATOR=':' PTHREAD_CC='gcc' PTHREAD_CFLAGS='-D_THREAD_SAFE ' PTHREAD_LIBS='' RANLIB='ranlib' SED='/usr/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='1.0.2' ac_ct_AR='ar' ac_ct_CC='gcc' ac_ct_CXX='g++' ac_ct_F77='' ac_ct_RANLIB='ranlib' ac_ct_STRIP='strip' acx_pthread_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='i686-apple-darwin10.4.0' build_alias='' build_cpu='i686' build_os='darwin10.4.0' build_vendor='apple' datadir='${prefix}/share' exec_prefix='${prefix}' host='i686-apple-darwin10.4.0' host_alias='' host_cpu='i686' host_os='darwin10.4.0' host_vendor='apple' includedir='${prefix}/include' infodir='${prefix}/info' install_sh='/Users/wesleysmith/Downloads/ilmbase-1.0.2/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localstatedir='${prefix}/var' mandir='${prefix}/man' mkdir_p='$(install_sh) -d' 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_COMPLETE_IOMANIP 1 #define HAVE_DLFCN_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_LIMITS_H 1 #define HAVE_MEMORY_H 1 #define HAVE_PTHREAD 1 #define HAVE_SEMAPHORE_H 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRERROR 1 #define HAVE_STRINGS_H 1 #define HAVE_STRING_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UNISTD_H 1 #define PACKAGE "ilmbase" #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "IlmBase" #define PACKAGE_STRING "IlmBase 1.0.2" #define PACKAGE_TARNAME "ilmbase" #define PACKAGE_VERSION "1.0.2" #define STDC_HEADERS 1 #define STDC_HEADERS 1 #define VERSION "1.0.2" #endif #ifdef __cplusplus extern "C" void exit (int); configure: exit 0 _______________________________________________ Openexr-devel mailing list Openexr-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/openexr-devel