[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Make check fails in libtool 2.1a (CVS snapshot) on AIX
From: |
Kyle Stemen |
Subject: |
Re: Make check fails in libtool 2.1a (CVS snapshot) on AIX |
Date: |
Sun, 01 Jul 2007 16:42:27 -0700 |
User-agent: |
Thunderbird 1.5.0.12 (X11/20070530) |
Ralf Wildenhues Ralf.Wildenhues-at-gmx.de |libtool bug reports| wrote:
> Hello Kyle,
>
> * Kyle Stemen wrote on Sat, Jun 30, 2007 at 08:29:50AM CEST:
>
>> I'm building libtool on AIX 5.3 release 4. I have gcc and other
>> development tools installed from
>> http://www-03.ibm.com/servers/aix/products/aixos/linux/download.html.
>>
>> Make check is failing on the CVS snapshot, 2.1a. It is also failing in
>> the development release, 1.9f. I chose to include the failures from 2.1a
>> because there are fewer of them.
>>
>
> Thanks. We're much more interested in 2.1a data.
>
>
>> Most of the tests fail with (see attachment):
>> ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FD_libhello_so
>> ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FI_libhello_so
>>
>
> I've seen this kind of failure before on HPUX 10.20 with GCC.
> Which compiler version do you use, how is it configured?
>
As I said, I am using the gcc compiler from:
http://www-03.ibm.com/servers/aix/products/aixos/linux/download.html.
You can also get the rpm spec file from there.
-bash-3.00$ gcc --version
gcc (GCC) 4.0.0
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.
-bash-3.00$ g++ --version
g++ (GCC) 4.0.0
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.
-bash-3.00$
I think the module initialization and termination functions are special,
and you can't link to them. I forced the linker to link them by using an
import file, but then the program wouldn't run. See linkwithimportfile.txt.
>
>> tagdemo-make.test fails with some missing C++ exports. G++ is broken on
>> AIX with regards to templates, so that isn't a libtool problem.
>>
>
> It would still be good to see verbose error output here, even if just
> for comparison. Also, could you please run the new testsuite and see
> how it fares (make check-local; see README for more information)?
>
I attached verbose output from tagdemo-make.test.
I attached testsuite.log from 'make check-local'.
> Thanks,
> Ralf
>
>
-bash-3.00$ cat imports.txt
#! /home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2
_GLOBAL__FD_libhello_so
_GLOBAL__FI_libhello_so
foo
nothing
hello
-bash-3.00$ gcc -g -O2 .libs/helldlS.o -o .libs/helldl dlmain.o -L./.libs -lm
-Wl,-blibpath:/home/kstemen/libtool/libtool-2.1a/_inst/lib:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
-Wl,-bI:imports.txt
-bash-3.00$ ./.libs/helldl
exec(): 0509-036 Cannot load program ./.libs/helldl because of the following
errors:
0509-130 Symbol resolution failed for helldl because:
0509-136 Symbol _GLOBAL__FD_libhello_so (number 18) is not exported
from
dependent module
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2.
0509-136 Symbol _GLOBAL__FI_libhello_so (number 19) is not exported
from
dependent module
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2.
0509-192 Examine .loader section symbols with the
'dump -Tv' command.
-bash-3.00$ dump -Tv .libs/helldl
.libs/helldl:
***Loader Section***
***Loader Symbol Table Information***
[Index] Value Scn IMEX Sclass Type IMPid Name
[0] 0x200012a0 .data RW SECdef [noIMid] __rtinit
[1] 0x0000e008 undef IMP XO EXTref libc.a(shr.o) ___memset
[2] 0x0000f000 undef IMP XO EXTref libc.a(shr.o) ___memmove
[3] 0x00000000 undef IMP RW EXTref libc.a(shr.o) errno
[4] 0x00000000 undef IMP UA EXTref libc.a(shr.o)
_system_configuration
[5] 0x00000000 undef IMP RW EXTref libc.a(shr.o) _iob
[6] 0x00000000 undef IMP DS EXTref libc.a(shr.o) malloc
[7] 0x00000000 undef IMP DS EXTref libc.a(shr.o) free
[8] 0x00000000 undef IMP DS EXTref libc.a(shr.o) exit
[9] 0x00000000 undef IMP DS EXTref libc.a(shr.o) strlen
[10] 0x00000000 undef IMP DS EXTref libc.a(shr.o) abort
[11] 0x00000000 undef IMP DS EXTref libc.a(shr.o) fflush
[12] 0x00000000 undef IMP DS EXTref libc.a(shr.o) printf
[13] 0x00000000 undef IMP DS EXTref libc.a(shr.o) fwrite
[14] 0x00000000 undef IMP DS EXTref libc.a(shr.o) puts
[15] 0x00000000 undef IMP DS EXTref libc.a(shr.o) __mod_init
[16] 0x00000000 undef IMP RW EXTref libc.a(shr.o) __crt0v
[17] 0x00000000 undef IMP RW EXTref libc.a(shr.o)
__malloc_user_defined_name
[18] 0x00000000 undef IMP PR EXTref
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2
_GLOBAL__FD_libhello_so
[19] 0x00000000 undef IMP PR EXTref
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2
_GLOBAL__FI_libhello_so
[20] 0x00000000 undef IMP PR EXTref
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2 foo
[21] 0x00000000 undef IMP PR EXTref
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2 nothing
[22] 0x00000000 undef IMP PR EXTref
/home/kstemen/libtool/libtool-2.1a/tests/demo/.libs/libhello.so.2 hello
[23] 0x200010a0 .data EXP RW Ldef [noIMid] __dbargs
[24] 0x20001308 .data ENTpt DS SECdef [noIMid] __start
[25] 0x20001388 .data EXP DS SECdef [noIMid] __dbsubc
[26] 0x20001390 .data EXP DS SECdef [noIMid] __dbsubg
[27] 0x20001398 .data EXP DS SECdef [noIMid] __dbsubn
-bash-3.00$ dump -Hvt .libs/libhello.so.2 | grep hello
.libs/libhello.so.2:
[17] m 0x000000ff debug 0 FILE C:COM hello.c
[241] m 0x10000178 .text 2 extern .hello
[244] m 0x00000000 debug 0 fun hello:F-1
[249] m 0x10000378 .text 1 unamex _hello.rw_
[251] m 0x20000440 .data 1 unamex hello
[253] m 0x20000440 .data 1 extern hello
[258] m 0x100001c0 .text 1 extern
._GLOBAL__FI_libhello_so
[260] m 0x10000218 .text 1 extern
._GLOBAL__FD_libhello_so
[266] m 0x2000044c .data 1 unamex
_GLOBAL__FI_libhello_so
[268] m 0x2000044c .data 1 extern
_GLOBAL__FI_libhello_so
[270] m 0x20000458 .data 1 unamex
_GLOBAL__FD_libhello_so
[272] m 0x20000458 .data 1 extern
_GLOBAL__FD_libhello_so
-bash-3.00$
tagdemo-make.test: === Running tagdemo-make.test
tagdemo-make.test: === Running `make ' in tagdemo
/bin/sh ./libtool --tag=CXX --mode=compile g++
-DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"tagdemo\ 1.0\"
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c -o foo.lo
foo.cpp
libtool: compile: g++ -DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"tagdemo 1.0\""
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c foo.cpp -DPIC
-o .libs/foo.o
/bin/sh ./libtool --tag=CXX --mode=compile g++
-DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"tagdemo\ 1.0\"
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c -o conv.lo
conv.cpp
libtool: compile: g++ -DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"tagdemo 1.0\""
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c conv.cpp -DPIC
-o .libs/conv.o
/bin/sh ./libtool --tag=CXX --mode=link g++ -g -O2 -no-undefined
-o libconv.la conv.lo
libtool: link: ar cru .libs/libconv.a .libs/conv.o
libtool: link: ranlib .libs/libconv.a
libtool: link: creating libconv.la
libtool: link: ( cd ".libs" && rm -f "libconv.la" && ln -s "../libconv.la"
"libconv.la" )
/bin/sh ./libtool --tag=CXX --mode=link g++ -g -O2 -no-undefined
-o libfoo.la -rpath /home/kstemen/libtool/libtool-2.1a/_inst/lib foo.lo
libconv.la -lm
libtool: link: generating symbol list for `libfoo.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/foo.o ./.libs/libconv.a | awk '{
if ((($ 2 == "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != "."))
{ print $ 3 } }' | sort -u > .libs/libfoo.exp
libtool: link: g++ -shared -o .libs/libfoo.so.0 .libs/foo.o
./.libs/libconv.a -L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0
-L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../.. -lstdc++ -lm -lc
-lgcc_s -Wl,-bnoentry -Wl,-bE:.libs/libfoo.exp -Wl,-berok
libtool: link: ar cru .libs/libfoo.a .libs/libfoo.so.0
libtool: link: creating libfoo.la
libtool: link: ( cd ".libs" && rm -f "libfoo.la" && ln -s "../libfoo.la"
"libfoo.la" )
/bin/sh ./libtool --tag=CXX --mode=compile g++
-DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"tagdemo\ 1.0\"
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c -o baz.lo
baz.cpp
libtool: compile: g++ -DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"tagdemo 1.0\""
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c baz.cpp -DPIC
-o .libs/baz.o
/bin/sh ./libtool --tag=CXX --mode=link g++ -g -O2 -no-undefined
-o libbaz.la -rpath /home/kstemen/libtool/libtool-2.1a/_inst/lib baz.lo
libfoo.la
libtool: link: generating symbol list for `libbaz.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/baz.o | awk '{ if ((($ 2 == "T")
|| ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3 } }'
| sort -u > .libs/libbaz.exp
libtool: link: g++ -shared -o .libs/libbaz.so.0 .libs/baz.o
-Wl,-blibpath:/home/kstemen/libtool/libtool-2.1a/tests/tagdemo/.libs:/home/kstemen/libtool/libtool-2.1a/_inst/lib:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
-L./.libs -lfoo -L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0
-L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../.. -lstdc++ -lm -lc
-lgcc_s -Wl,-bnoentry -Wl,-bE:.libs/libbaz.exp -Wl,-berok
libtool: link: ar cru .libs/libbaz.a .libs/libbaz.so.0
libtool: link: creating libbaz.la
libtool: link: ( cd ".libs" && rm -f "libbaz.la" && ln -s "../libbaz.la"
"libbaz.la" )
g++ -DPACKAGE_NAME=\"tagdemo\" -DPACKAGE_TARNAME=\"tagdemo\"
-DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"tagdemo\ 1.0\"
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"tagdemo\" -DVERSION=\"1.0\"
-DHAVE_NAMESPACES=1 -DHAVE_IOSTREAM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c -o main.o
main.cpp
/bin/sh ./libtool --tag=CXX --mode=link g++ -g -O2 -o tagdemo
main.o libbaz.la
libtool: link: g++ -g -O2 -o .libs/tagdemo main.o
-L/home/kstemen/libtool/libtool-2.1a/tests/tagdemo/.libs -L./.libs -lbaz -lfoo
-Wl,-blibpath:/home/kstemen/libtool/libtool-2.1a/_inst/lib:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
ld: 0711-317 ERROR: Undefined symbol: .std::basic_ostream<char,
std::char_traits<char> >& std::operator<< <std::char_traits<char>
>(std::basic_ostream<char, std::char_traits<char> >&, char const*)
ld: 0711-317 ERROR: Undefined symbol: .std::basic_ostream<char,
std::char_traits<char> >& std::endl<char, std::char_traits<char>
>(std::basic_ostream<char, std::char_traits<char> >&)
ld: 0711-317 ERROR: Undefined symbol: .std::basic_ostream<char,
std::char_traits<char> >::operator<<(unsigned long)
ld: 0711-317 ERROR: Undefined symbol: .std::basic_ostream<char,
std::char_traits<char> >::operator<<(long)
ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__class_type_info
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
collect2: ld returned 8 exit status
make: The error code from the last command is 1.
Stop.
FAIL: tests/tagdemo-make.test
## ------------------------ ##
## libtool 2.1a test suite. ##
## ------------------------ ##
testsuite: command line was:
$ /home/kstemen/libtool/libtool-2.1a/tests/testsuite MAKE=make CC=gcc
CFLAGS=-g -O2 CPP=gcc -E CPPFLAGS= LD=/usr/bin/ld LDFLAGS= LIBS= LN_S=ln -s
NM=/usr/bin/nm -B RANLIB=ranlib OBJEXT=o EXEEXT= SHELL=/bin/sh
CONFIG_SHELL=/bin/sh CXX=g++ CXXFLAGS=-g -O2 CXXCPP=g++ -E F77= FFLAGS= FC=
FCFLAGS= GCJ= GCJFLAGS=-g -O2 _lt_pkgdatadir=/home/kstemen/libtool/libtool-2.1a
LIBTOOLIZE=/home/kstemen/libtool/libtool-2.1a/libtoolize
LIBTOOL=/home/kstemen/libtool/libtool-2.1a/libtool
tst_aclocaldir=/home/kstemen/libtool/libtool-2.1a/libltdl/m4
## ----------- ##
## ChangeLogs. ##
## ----------- ##
testsuite: ../ChangeLog:
| 2007-06-30 Peter Breitenlohner <address@hidden>
|
| * libltdl/m4/libtool.m4 (LT_SYS_DLOPEN_SELF): Correct a typo
| ("-dld" instead of "-ldld").
|
| 2007-06-24 Gary V. Vaughan <address@hidden>
|
| Add a test to simulate a failure visible on systems which
| need a library prefix like 'lib', such as BeOS. Fix a number
| of bugs exposed by this test in order for it to pass.
## --------- ##
## Platform. ##
## --------- ##
hostname = aix64dev
uname -m = 00CBE1FD4C00
uname -r = 3
uname -s = AIX
uname -v = 5
/usr/bin/uname -p = powerpc
/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 = 5.3.0.0
/bin/universe = unknown
PATH: /home/kstemen/libtool/libtool-2.1a/tests
PATH: /usr/bin
PATH: /etc
PATH: /usr/sbin
PATH: /usr/ucb
PATH: /usr/bin/X11
PATH: /sbin
PATH: /usr/java14/jre/bin
PATH: /usr/java14/bin
PATH: /usr/local/bin
testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
|
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/home/kstemen/libtool/libtool-2.1a/tests'
| at_srcdir='.'
| abs_srcdir='/home/kstemen/libtool/libtool-2.1a/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/home/kstemen/libtool/libtool-2.1a'
| at_top_build_prefix='../'
| abs_top_builddir='/home/kstemen/libtool/libtool-2.1a'
|
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
|
| AUTOTEST_PATH='tests'
|
| SHELL=${CONFIG_SHELL-'/bin/sh'}
## ---------------- ##
## Tested programs. ##
## ---------------- ##
## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Sun Jul 1 18:11:07 CDT 2007
1. libtoolize macro installation (libtoolize.at:79): ok (0m0.256s 0m0.179s)
2. libtoolize macro serial update (libtoolize.at:103): ok (0m1.379s
0m0.852s)
3. libtoolize config files serial update (libtoolize.at:194): ok
(0m1.955s 0m1.247s)
4. copy ltdl.m4 with shared macro directory (libtoolize.at:295): ok
(0m0.519s 0m0.371s)
6. duplicate members in archive tests (duplicate_members.at:26): ok
(0m1.244s 0m0.456s)
7. duplicate convenience archive names (duplicate_conv.at:25): ok
(0m2.148s 0m0.697s)
8. preserve duplicate convenience deps (duplicate_deps.at:25): skipped
(duplicate_deps.at:66)
9. inherited_linker_flags (inherited_flags.at:26): ok (0m1.666s 0m0.577s)
10. C convenience archives (convenience.at:30): ok (0m2.202s 0m0.747s)
11. C++ convenience archives (convenience.at:69): ok (0m2.789s 0m1.254s)
12. F77 convenience archives (convenience.at:109): skipped (convenience.at:110)
13. FC convenience archives (convenience.at:169): skipped (convenience.at:170)
14. Java convenience archives (convenience.at:229): skipped (convenience.at:230)
15. Link order test. (link-order.at:26): ok (0m2.976s 0m0.859s)
16. Link order of deplibs. (link-order2.at:46): skipped (link-order2.at:144)
17. Failure tests (fail.at:27): ok (0m0.688s 0m0.195s)
18. shlibpath_overrides_runpath (shlibpath.at:25): ok (0m1.254s 0m0.341s)
19. static linking flags for programs (static.at:68): ok (0m7.983s
0m3.546s)
20. Export test (export.at:25): ok (0m3.540s 0m1.317s)
21. sys_lib_search_path (search-path.at:25): ok (0m0.335s 0m0.091s)
22. indirect convenience (indirect_deps.at:25): ok (0m1.817s 0m0.628s)
23. indirect uninstalled (indirect_deps.at:71): ok (0m2.135s 0m0.802s)
25. Simple DESTDIR install (destdir.at:48): ok (0m0.738s 0m0.255s)
26. DESTDIR with in-package deplibs (destdir.at:75): ok (0m2.629s 0m0.859s)
27. AM_PROG_LIBTOOL (old-m4-iface.at:40): ok (0m5.751s 0m1.514s)
28. AC_WITH_LTDL (old-m4-iface.at:95): ok (0m17.228s 0m4.785s)
29. C subdir-objects (am-subdir.at:33): ok (0m11.795s 0m2.121s)
30. C++ subdir-objects (am-subdir.at:93): ok (0m14.770s 0m2.998s)
31. lt_dlexit unloading libs (lt_dlexit.at:30): ok (0m0.828s 0m0.266s)
34. compiling softlinked libltdl (standalone.at:31): ok (0m7.323s 0m3.035s)
35. compiling copied libltdl (standalone.at:46): ok (0m7.479s 0m3.176s)
36. installable libltdl (standalone.at:61): ok (0m9.619s 0m3.547s)
37. linking libltdl without autotools (standalone.at:79): ok (0m7.720s
0m3.278s)
38. compiling softlinked libltdl (subproject.at:57): skipped (subproject.at:61)
39. compiling copied libltdl (subproject.at:73): skipped (subproject.at:77)
40. installable libltdl (subproject.at:89): skipped (subproject.at:95)
41. linking libltdl without autotools (subproject.at:109): ok (0m7.743s
0m3.300s)
42. compiling softlinked libltdl (nonrecursive.at:78): ok (0m21.297s
0m3.798s)
43. compiling copied libltdl (nonrecursive.at:102): ok (0m21.449s 0m3.927s)
44. installable libltdl (nonrecursive.at:126): ok (0m21.883s 0m4.063s)
45. compiling softlinked libltdl (recursive.at:60): ok (0m28.254s 0m4.067s)
46. compiling copied libltdl (recursive.at:80): ok (0m28.387s 0m4.182s)
47. installable libltdl (recursive.at:100): ok (0m28.821s 0m4.308s)
48. simple template test (template.at:27): ok (0m0.859s 0m0.399s)
50. C++ static constructors (ctor.at:27): ok (0m0.657s 0m0.340s)
51. config.status (early-libtool.at:32): ok (0m9.680s 0m1.840s)
52. config.lt (early-libtool.at:126): ok (0m12.193s 0m2.076s)
53. build tree relpaths (deplibs-ident.at:32): ok (0m1.227s 0m0.463s)
54. Link option thorough search test (stresstest.at:31): ok (1m11.472s
0m28.870s)
testsuite: ending at: Sun Jul 1 18:28:23 CDT 2007
testsuite: test suite duration: 0h 17m 16s
## ------------- ##
## Test results. ##
## ------------- ##
ERROR: 47 tests were run,
6 failed (1 expected failure).
8 tests were skipped.
## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
libtool 2.1a test suite test groups:
NUM: FILE-NAME:LINE TEST-GROUP-NAME
KEYWORDS
5: libtoolize.at:368 upgrading verbatim style aclocal.m4
libtoolize automake
32: lt_dladvise.at:28 lt_dlopenadvise library loading
libltdl
33: need_lib_prefix.at:25 enforced lib prefix
libltdl libtool
49: template.at:126 template test with subdirs
CXX libtool
55: cmdline_wrap.at:28 Run tests with low max_cmd_len
recursive
Skipped tests:
libtool 2.1a test suite test groups:
NUM: FILE-NAME:LINE TEST-GROUP-NAME
KEYWORDS
8: duplicate_deps.at:25 preserve duplicate convenience deps
libtool
12: convenience.at:109 F77 convenience archives
F77 libtool
13: convenience.at:169 FC convenience archives
FC libtool
14: convenience.at:229 Java convenience archives
GCJ libtool
16: link-order2.at:46 Link order of deplibs.
libtool
38: subproject.at:57 compiling softlinked libltdl
libtoolize automake autoconf
39: subproject.at:73 compiling copied libltdl
libtoolize automake autoconf
40: subproject.at:89 installable libltdl
libtoolize automake autoconf
## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##
# -*- compilation -*-
5. libtoolize.at:368: testing ...
./libtoolize.at:388: /home/kstemen/libtool/libtool-2.1a/libtoolize --copy
./libtoolize.at:430: /home/kstemen/libtool/libtool-2.1a/libtoolize --copy
./libtoolize.at:437: $ACLOCAL -I m4
stderr:
stdout:
./libtoolize.at:467: /home/kstemen/libtool/libtool-2.1a/libtoolize --copy
8d7
< libtoolize: You should add the contents of `m4/lt~obsolete.m4' to
`aclocal.m4'.
5. libtoolize.at:368: 5. upgrading verbatim style aclocal.m4
(libtoolize.at:368): FAILED (libtoolize.at:467)
# -*- compilation -*-
32. lt_dladvise.at:28: testing ...
libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
moddepend.c -DPIC -o .libs/moddepend.o
./lt_dladvise.at:288: $LIBTOOL --mode=link $CC -module $CFLAGS $LDFLAGS -o
libdepend.la \
moddepend.lo -rpath /foo -avoid-version
stderr:
stdout:
libtool: link: generating symbol list for `libdepend.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/moddepend.o | awk '{ if ((($ 2 ==
"T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3
} }' | sort -u > .libs/libdepend.exp
libtool: link: gcc -shared -o .libs/libdepend.so .libs/moddepend.o -lc
-Wl,-bnoentry -Wl,-bE:.libs/libdepend.exp -Wl,-berok
libtool: link: ar cru .libs/libdepend.a .libs/libdepend.so
libtool: link: creating libdepend.la
libtool: link: ( cd ".libs" && rm -f "libdepend.la" && ln -s "../libdepend.la"
"libdepend.la" )
libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
modresident.c -DPIC -o .libs/modresident.o
./lt_dladvise.at:302: $LIBTOOL --mode=link $CC -module $CFLAGS $LDFLAGS -o
lib$name.la \
mod$name.lo -rpath /foo -avoid-version
stderr:
stdout:
libtool: link: generating symbol list for `libresident.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/modresident.o | awk '{ if ((($ 2
== "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $
3 } }' | sort -u > .libs/libresident.exp
libtool: link: gcc -shared -o .libs/libresident.so .libs/modresident.o -lc
-Wl,-bnoentry -Wl,-bE:.libs/libresident.exp -Wl,-bernotok
libtool: link: ar cru .libs/libresident.a .libs/libresident.so
libtool: link: creating libresident.la
libtool: link: ( cd ".libs" && rm -f "libresident.la" && ln -s
"../libresident.la" "libresident.la" )
libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
modlocal.c -DPIC -o .libs/modlocal.o
./lt_dladvise.at:302: $LIBTOOL --mode=link $CC -module $CFLAGS $LDFLAGS -o
lib$name.la \
mod$name.lo -rpath /foo -avoid-version
stderr:
stdout:
libtool: link: generating symbol list for `liblocal.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/modlocal.o | awk '{ if ((($ 2 ==
"T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3
} }' | sort -u > .libs/liblocal.exp
libtool: link: gcc -shared -o .libs/liblocal.so .libs/modlocal.o -lc
-Wl,-bnoentry -Wl,-bE:.libs/liblocal.exp -Wl,-bernotok
libtool: link: ar cru .libs/liblocal.a .libs/liblocal.so
libtool: link: creating liblocal.la
libtool: link: ( cd ".libs" && rm -f "liblocal.la" && ln -s "../liblocal.la"
"liblocal.la" )
libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
modglobal.c -DPIC -o .libs/modglobal.o
./lt_dladvise.at:302: $LIBTOOL --mode=link $CC -module $CFLAGS $LDFLAGS -o
lib$name.la \
mod$name.lo -rpath /foo -avoid-version
stderr:
stdout:
libtool: link: generating symbol list for `libglobal.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/modglobal.o | awk '{ if ((($ 2 ==
"T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3
} }' | sort -u > .libs/libglobal.exp
libtool: link: gcc -shared -o .libs/libglobal.so .libs/modglobal.o -lc
-Wl,-bnoentry -Wl,-bE:.libs/libglobal.exp -Wl,-bernotok
libtool: link: ar cru .libs/libglobal.a .libs/libglobal.so
libtool: link: creating libglobal.la
libtool: link: ( cd ".libs" && rm -f "libglobal.la" && ln -s "../libglobal.la"
"libglobal.la" )
./lt_dladvise.at:314: $LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o main
main.$OBJEXT \
$modules $LIBLTDL
stderr:
stdout:
libtool: link: rm -f .libs/main.nm .libs/main.nmS .libs/main.nmT
libtool: link: creating .libs/mainS.c
libtool: link: (cd .libs && gcc -g -O2 -c -fno-builtin "mainS.c")
libtool: link: rm -f ".libs/mainS.c" ".libs/main.nm" ".libs/main.nmS"
".libs/main.nmT"
libtool: link: gcc -g -O2 -o main main.o .libs/mainS.o
/home/kstemen/libtool/libtool-2.1a/libltdl/.libs/dlopen.a
/home/kstemen/libtool/libtool-2.1a/tests/../libltdl/.libs/libltdlc.a
libtool: link: rm -f ".libs/mainS.o"
./lt_dladvise.at:316: $LIBTOOL --mode=execute $modules ./main; lt_status=$?;
if test $lt_status -eq 0; then :;
elif test "X$host" != "X$build" && \
{ test -x "./main" || test -x "./main"$EXEEXT; }
then (exit 77); else (exit $lt_status); fi
0a1
> /home/kstemen/libtool/libtool-2.1a/tests/testsuite: line 12591: 782350
> Segmentation fault (core dumped) $LIBTOOL --mode=execute $modules ./main
1,4d0
< resident: 2
< local: 3
< global: 4
< depend: 5
./lt_dladvise.at:316: exit code was 139, expected 0
32. lt_dladvise.at:28: 32. lt_dlopenadvise library loading (lt_dladvise.at:28):
FAILED (lt_dladvise.at:316)
# -*- compilation -*-
33. need_lib_prefix.at:25: testing ...
libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
foo1.c -DPIC -o .libs/foo1.o
libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
foo2.c -DPIC -o .libs/foo2.o
./need_lib_prefix.at:157: $LIBTOOL --mode=link $CC -module -avoid-version
$CFLAGS $LDFLAGS -o foo1.la foo1.lo -rpath $instdir/lib
stderr:
stdout:
libtool: link: generating symbol list for `libfoo1.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/foo1.o | awk '{ if ((($ 2 == "T")
|| ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3 } }'
| sort -u > .libs/libfoo1.exp
libtool: link: gcc -shared -o .libs/libfoo1.so .libs/foo1.o -lc
-Wl,-bnoentry -Wl,-bE:.libs/libfoo1.exp -Wl,-berok
libtool: link: ar cru .libs/libfoo1.a .libs/libfoo1.so
libtool: link: creating foo1.la
libtool: link: ( cd ".libs" && rm -f "foo1.la" && ln -s "../foo1.la" "foo1.la" )
./need_lib_prefix.at:159: $LIBTOOL --mode=link $CC -module -avoid-version
$CFLAGS $LDFLAGS -o libfoo2.la foo2.lo -rpath $instdir/lib
stderr:
stdout:
libtool: link: generating symbol list for `libfoo2.la'
libtool: link: /usr/bin/nm -B -BCpg .libs/foo2.o | awk '{ if ((($ 2 == "T")
|| ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3 } }'
| sort -u > .libs/libfoo2.exp
libtool: link: gcc -shared -o .libs/libfoo2.so .libs/foo2.o -lc
-Wl,-bnoentry -Wl,-bE:.libs/libfoo2.exp -Wl,-berok
libtool: link: ar cru .libs/libfoo2.a .libs/libfoo2.so
libtool: link: creating libfoo2.la
libtool: link: ( cd ".libs" && rm -f "libfoo2.la" && ln -s "../libfoo2.la"
"libfoo2.la" )
./need_lib_prefix.at:161: $LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o main
main.$OBJEXT -dlpreopen foo1.la -dlpreopen libfoo2.la $LIBLTDL
stderr:
ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FD_libfoo1_so
ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FI_libfoo1_so
ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FD_libfoo2_so
ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FI_libfoo2_so
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
collect2: ld returned 8 exit status
stdout:
libtool: link: rm -f .libs/main.nm .libs/main.nmS .libs/main.nmT
libtool: link: creating .libs/mainS.c
libtool: link: extracting global C symbols from `./.libs/libfoo1.so'
libtool: link: extracting global C symbols from `./.libs/libfoo2.so'
libtool: link: (cd .libs && gcc -g -O2 -c -fno-builtin "mainS.c")
libtool: link: rm -f ".libs/mainS.c" ".libs/main.nm" ".libs/main.nmS"
".libs/main.nmT"
libtool: link: gcc -g -O2 -o .libs/main main.o .libs/mainS.o -L./.libs -lfoo1
-lfoo2 /home/kstemen/libtool/libtool-2.1a/libltdl/.libs/dlopen.a
/home/kstemen/libtool/libtool-2.1a/tests/../libltdl/.libs/libltdlc.a
-Wl,-blibpath:/home/kstemen/libtool/libtool-2.1a/tests/testsuite.dir/33/_inst/lib:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
./need_lib_prefix.at:161: exit code was 1, expected 0
33. need_lib_prefix.at:25: 33. enforced lib prefix (need_lib_prefix.at:25):
FAILED (need_lib_prefix.at:161)
# -*- compilation -*-
49. template.at:126: testing ...
./template.at:127: { test -n "$CXX" && test "X$CXX" != Xno; } || (exit 77)
./template.at:221: $CXX $CPPFLAGS $CXXFLAGS -c -o $main_o ../src/sub/main.cpp
stderr:
stdout:
./template.at:231: $LIBTOOL --tag=CXX --mode=compile $CXX $CPPFLAGS $CXXFLAGS
-c -o lib/a.lo ../src/lib/a.cpp
stderr:
stdout:
libtool: compile: g++ -I../src/lib -I../src/lib2 -g -O2 -c ../src/lib/a.cpp
-DPIC -o lib/.libs/a.o
./template.at:233: $LIBTOOL --tag=CXX --mode=compile $CXX $CPPFLAGS $CXXFLAGS
-c -o lib2/b.lo ../src/lib2/b.cpp
stderr:
stdout:
libtool: compile: g++ -I../src/lib -I../src/lib2 -g -O2 -c ../src/lib2/b.cpp
-DPIC -o lib2/.libs/b.o
./template.at:235: $CXX $CPPFLAGS $CXXFLAGS -c ../src/sub/main.cpp
stderr:
stdout:
./template.at:238: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
lib/liba.la lib/a.lo
stderr:
stdout:
libtool: link: ar cru lib/.libs/liba.a lib/.libs/a.o
libtool: link: ranlib lib/.libs/liba.a
libtool: link: creating lib/liba.la
libtool: link: ( cd "lib/.libs" && rm -f "liba.la" && ln -s "../liba.la"
"liba.la" )
./template.at:240: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
lib2/libb.la lib2/b.lo
stderr:
stdout:
libtool: link: ar cru lib2/.libs/libb.a lib2/.libs/b.o
libtool: link: ranlib lib2/.libs/libb.a
libtool: link: creating lib2/libb.la
libtool: link: ( cd "lib2/.libs" && rm -f "libb.la" && ln -s "../libb.la"
"libb.la" )
./template.at:242: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
sub/main $main_o lib2/libb.la lib/liba.la
stderr:
stdout:
libtool: link: g++ -g -O2 -o sub/main sub/main.o lib2/.libs/libb.a
lib/.libs/liba.a
./template.at:244: ./sub/main; lt_status=$?; if test $lt_status -eq 0; then :;
elif test "X$host" != "X$build" && \
{ test -x "./sub/main" || test -x "./sub/main"$EXEEXT; }
then (exit 77); else (exit $lt_status); fi
./template.at:247: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
lib2/libb.la lib2/b.lo -rpath /foo
stderr:
stdout:
libtool: link: rm -fr lib2/.libs/libb.a lib2/.libs/libb.la
libtool: link: generating symbol list for `libb.la'
libtool: link: /usr/bin/nm -B -BCpg lib2/.libs/b.o | awk '{ if ((($ 2 ==
"T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3
} }' | sort -u > lib2/.libs/libb.exp
libtool: link: g++ -shared -o lib2/.libs/libb.so.0 lib2/.libs/b.o
-L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0
-L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../.. -lstdc++ -lm -lc
-lgcc_s -Wl,-bnoentry -Wl,-bE:lib2/.libs/libb.exp -Wl,-berok
libtool: link: ar cru lib2/.libs/libb.a lib2/.libs/libb.so.0
libtool: link: creating lib2/libb.la
libtool: link: ( cd "lib2/.libs" && rm -f "libb.la" && ln -s "../libb.la"
"libb.la" )
./template.at:249: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
sub/main $main_o lib2/libb.la lib/liba.la
stderr:
stdout:
libtool: link: g++ -g -O2 -o sub/.libs/main sub/main.o -Llib2/.libs -lb
lib/.libs/liba.a
-Wl,-blibpath:/foo:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
libtool: link: creating sub/main
./template.at:251: ./sub/main; lt_status=$?; if test $lt_status -eq 0; then :;
elif test "X$host" != "X$build" && \
{ test -x "./sub/main" || test -x "./sub/main"$EXEEXT; }
then (exit 77); else (exit $lt_status); fi
0a1
> /home/kstemen/libtool/libtool-2.1a/tests/testsuite: line 1280: 1118276
> Segmentation fault (core dumped) ./sub/main
./template.at:251: exit code was 139, expected 0
49. template.at:126: 49. template test with subdirs (template.at:126): FAILED
(template.at:251)
# -*- compilation -*-
55. cmdline_wrap.at:28: testing ...
./cmdline_wrap.at:43: $CONFIG_SHELL $abs_srcdir/testsuite -k libtool
$INNER_TESTSUITEFLAGS
stderr:
ERROR: 22 tests were run,
3 failed (1 expected failure).
5 tests were skipped.
stdout:
## ------------------------ ##
## libtool 2.1a test suite. ##
## ------------------------ ##
Testing libtool functions.
6: duplicate members in archive tests ok
7: duplicate convenience archive names ok
8: preserve duplicate convenience deps skipped
(duplicate_deps.at:66)
9: inherited_linker_flags ok
10: C convenience archives ok
11: C++ convenience archives ok
12: F77 convenience archives skipped
(convenience.at:110)
13: FC convenience archives skipped
(convenience.at:170)
14: Java convenience archives skipped
(convenience.at:230)
15: Link order test. ok
16: Link order of deplibs. skipped
(link-order2.at:144)
17: Failure tests ok
18: shlibpath_overrides_runpath ok
19: static linking flags for programs ok
20: Export test ok
21: sys_lib_search_path ok
22: indirect convenience ok
23: indirect uninstalled ok
24: static library contains static library expected failure
(archive-in-archive.at:48)
DESTDIR tests
25: Simple DESTDIR install ok
26: DESTDIR with in-package deplibs ok
Libltdl functionality.
33: enforced lib prefix FAILED
(need_lib_prefix.at:161)
C++ template tests.
48: simple template test ok
49: template test with subdirs FAILED (template.at:251)
Constructors.
50: C++ static constructors ok
Detecting identical deplibs.
53: build tree relpaths ok
Libtool stress test.
54: Link option thorough search test ok
## ------------- ##
## Test results. ##
## ------------- ##
## -------------------------- ##
## testsuite.log was created. ##
## -------------------------- ##
Please send `testsuite.log' and all information you think might help:
To: <address@hidden>
Subject: [libtool 2.1a] testsuite: 33 49 failed
You may investigate any problem if you feel able to do so, in which
case the test suite provides a good starting point. Its output may
be found below `testsuite.dir'.
./cmdline_wrap.at:43: exit code was 1, expected 0
testsuite.log:
> ## ------------------------ ##
> ## libtool 2.1a test suite. ##
> ## ------------------------ ##
>
> testsuite: command line was:
> $ /home/kstemen/libtool/libtool-2.1a/tests/testsuite -k libtool
> abs_top_srcdir=/home/kstemen/libtool/libtool-2.1a
> abs_builddir=/home/kstemen/libtool/libtool-2.1a/tests
>
> ## ---------------- ##
> ## Tested programs. ##
> ## ---------------- ##
>
> ## ------------------ ##
> ## Running the tests. ##
> ## ------------------ ##
> testsuite: starting at: Sun Jul 1 18:24:02 CDT 2007
> 6. duplicate members in archive tests (duplicate_members.at:26): ok
> (0m1.352s 0m0.592s)
> 7. duplicate convenience archive names (duplicate_conv.at:25): ok
> (0m2.203s 0m0.748s)
> 8. preserve duplicate convenience deps (duplicate_deps.at:25): skipped
> (duplicate_deps.at:66)
> 9. inherited_linker_flags (inherited_flags.at:26): ok (0m1.728s 0m0.662s)
> 10. C convenience archives (convenience.at:30): ok (0m2.229s 0m0.781s)
> 11. C++ convenience archives (convenience.at:69): ok (0m2.822s 0m1.289s)
> 12. F77 convenience archives (convenience.at:109): skipped
> (convenience.at:110)
> 13. FC convenience archives (convenience.at:169): skipped (convenience.at:170)
> 14. Java convenience archives (convenience.at:229): skipped
> (convenience.at:230)
> 15. Link order test. (link-order.at:26): ok (0m3.081s 0m0.986s)
> 16. Link order of deplibs. (link-order2.at:46): skipped (link-order2.at:144)
> 17. Failure tests (fail.at:27): ok (0m0.709s 0m0.232s)
> 18. shlibpath_overrides_runpath (shlibpath.at:25): ok (0m1.280s 0m0.377s)
> 19. static linking flags for programs (static.at:68): ok (0m8.172s
> 0m3.838s)
> 20. Export test (export.at:25): ok (0m3.602s 0m1.377s)
> 21. sys_lib_search_path (search-path.at:25): ok (0m0.337s 0m0.092s)
> 22. indirect convenience (indirect_deps.at:25): ok (0m1.850s 0m0.670s)
> 23. indirect uninstalled (indirect_deps.at:71): ok (0m2.215s 0m0.905s)
> 25. Simple DESTDIR install (destdir.at:48): ok (0m0.754s 0m0.275s)
> 26. DESTDIR with in-package deplibs (destdir.at:75): ok (0m2.714s
> 0m0.977s)
> 48. simple template test (template.at:27): ok (0m0.872s 0m0.418s)
> 50. C++ static constructors (ctor.at:27): ok (0m0.672s 0m0.359s)
> 53. build tree relpaths (deplibs-ident.at:32): ok (0m1.278s 0m0.528s)
> 54. Link option thorough search test (stresstest.at:31): ok (1m11.884s
> 0m29.378s)
> testsuite: ending at: Sun Jul 1 18:28:23 CDT 2007
> testsuite: test suite duration: 0h 4m 21s
>
> ## ------------- ##
> ## Test results. ##
> ## ------------- ##
>
> ERROR: 22 tests were run,
> 3 failed (1 expected failure).
> 5 tests were skipped.
>
> ## ------------------------ ##
> ## Summary of the failures. ##
> ## ------------------------ ##
> Failed tests:
> libtool 2.1a test suite test groups:
>
> NUM: FILE-NAME:LINE TEST-GROUP-NAME
> KEYWORDS
>
> 33: need_lib_prefix.at:25 enforced lib prefix
> libltdl libtool
> 49: template.at:126 template test with subdirs
> CXX libtool
>
> Skipped tests:
> libtool 2.1a test suite test groups:
>
> NUM: FILE-NAME:LINE TEST-GROUP-NAME
> KEYWORDS
>
> 8: duplicate_deps.at:25 preserve duplicate convenience deps
> libtool
> 12: convenience.at:109 F77 convenience archives
> F77 libtool
> 13: convenience.at:169 FC convenience archives
> FC libtool
> 14: convenience.at:229 Java convenience archives
> GCJ libtool
> 16: link-order2.at:46 Link order of deplibs.
> libtool
>
> ## ---------------------- ##
> ## Detailed failed tests. ##
> ## ---------------------- ##
>
> # -*- compilation -*-
> 33. need_lib_prefix.at:25: testing ...
> libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
> foo1.c -DPIC -o .libs/foo1.o
> libtool: compile: gcc -I/home/kstemen/libtool/libtool-2.1a/libltdl -g -O2 -c
> foo2.c -DPIC -o .libs/foo2.o
> /need_lib_prefix.at:157: $LIBTOOL --mode=link $CC -module -avoid-version
> $CFLAGS $LDFLAGS -o foo1.la foo1.lo -rpath $instdir/lib
> stderr:
> stdout:
> libtool: link: generating symbol list for `libfoo1.la'
> libtool: link: using reloadable object file for export list...
> libtool: link: creating reloadable object files...
> libtool: link: generating symbol list for `libfoo1.la'
> libtool: link: creating a temporary reloadable object file: .libs/foo1.la-1.o
> libtool: link: /usr/bin/ld -r -o .libs/foo1.la-1.o .libs/foo1.o
> libtool: link: /usr/bin/nm -B -BCpg .libs/foo1.la-1.o | awk '{ if ((($ 2 ==
> "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $
> 3 } }' | sort -u > .libs/libfoo1.exp
> libtool: link: gcc -shared -o .libs/libfoo1.so .libs/foo1.la-1.o -lc
> -Wl,-bnoentry -Wl,-bE:.libs/libfoo1.exp -Wl,-berok
> libtool: link: ar cru .libs/libfoo1.a .libs/libfoo1.so
> libtool: link: rm -f .libs/foo1.la-1.o
> libtool: link: creating foo1.la
> libtool: link: ( cd ".libs" && rm -f "foo1.la" && ln -s "../foo1.la"
> "foo1.la" )
> /need_lib_prefix.at:159: $LIBTOOL --mode=link $CC -module -avoid-version
> $CFLAGS $LDFLAGS -o libfoo2.la foo2.lo -rpath $instdir/lib
> stderr:
> stdout:
> libtool: link: generating symbol list for `libfoo2.la'
> libtool: link: using reloadable object file for export list...
> libtool: link: creating reloadable object files...
> libtool: link: generating symbol list for `libfoo2.la'
> libtool: link: creating a temporary reloadable object file:
> .libs/libfoo2.la-1.o
> libtool: link: /usr/bin/ld -r -o .libs/libfoo2.la-1.o .libs/foo2.o
> libtool: link: /usr/bin/nm -B -BCpg .libs/libfoo2.la-1.o | awk '{ if ((($ 2
> == "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print
> $ 3 } }' | sort -u > .libs/libfoo2.exp
> libtool: link: gcc -shared -o .libs/libfoo2.so .libs/libfoo2.la-1.o -lc
> -Wl,-bnoentry -Wl,-bE:.libs/libfoo2.exp -Wl,-berok
> libtool: link: ar cru .libs/libfoo2.a .libs/libfoo2.so
> libtool: link: rm -f .libs/libfoo2.la-1.o
> libtool: link: creating libfoo2.la
> libtool: link: ( cd ".libs" && rm -f "libfoo2.la" && ln -s "../libfoo2.la"
> "libfoo2.la" )
> /need_lib_prefix.at:161: $LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o main
> main.$OBJEXT -dlpreopen foo1.la -dlpreopen libfoo2.la $LIBLTDL
> stderr:
> ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FD_libfoo1_so
> ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FI_libfoo1_so
> ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FD_libfoo2_so
> ld: 0711-317 ERROR: Undefined symbol: _GLOBAL__FI_libfoo2_so
> ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
> collect2: ld returned 8 exit status
> stdout:
> libtool: link: rm -f .libs/main.nm .libs/main.nmS .libs/main.nmT
> libtool: link: creating .libs/mainS.c
> libtool: link: extracting global C symbols from `./.libs/libfoo1.so'
> libtool: link: extracting global C symbols from `./.libs/libfoo2.so'
> libtool: link: (cd .libs && gcc -g -O2 -c -fno-builtin "mainS.c")
> libtool: link: rm -f ".libs/mainS.c" ".libs/main.nm" ".libs/main.nmS"
> ".libs/main.nmT"
> libtool: link: gcc -g -O2 -o .libs/main main.o .libs/mainS.o -L./.libs
> -lfoo1 -lfoo2 /home/kstemen/libtool/libtool-2.1a/libltdl/.libs/dlopen.a
> /home/kstemen/libtool/libtool-2.1a/tests/../libltdl/.libs/libltdlc.a
> -Wl,-blibpath:/home/kstemen/libtool/libtool-2.1a/tests/testsuite.dir/55/tests/testsuite.dir/33/_inst/lib:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
>
> /need_lib_prefix.at:161: exit code was 1, expected 0
> 33. need_lib_prefix.at:25: 33. enforced lib prefix (need_lib_prefix.at:25):
> FAILED (need_lib_prefix.at:161)
>
> # -*- compilation -*-
> 49. template.at:126: testing ...
> /template.at:127: { test -n "$CXX" && test "X$CXX" != Xno; } || (exit 77)
> /template.at:221: $CXX $CPPFLAGS $CXXFLAGS -c -o $main_o ../src/sub/main.cpp
> stderr:
> stdout:
> /template.at:231: $LIBTOOL --tag=CXX --mode=compile $CXX $CPPFLAGS $CXXFLAGS
> -c -o lib/a.lo ../src/lib/a.cpp
> stderr:
> stdout:
> libtool: compile: g++ -I../src/lib -I../src/lib2 -g -O2 -c ../src/lib/a.cpp
> -DPIC -o lib/.libs/a.o
> /template.at:233: $LIBTOOL --tag=CXX --mode=compile $CXX $CPPFLAGS $CXXFLAGS
> -c -o lib2/b.lo ../src/lib2/b.cpp
> stderr:
> stdout:
> libtool: compile: g++ -I../src/lib -I../src/lib2 -g -O2 -c ../src/lib2/b.cpp
> -DPIC -o lib2/.libs/b.o
> /template.at:235: $CXX $CPPFLAGS $CXXFLAGS -c ../src/sub/main.cpp
> stderr:
> stdout:
> /template.at:238: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
> lib/liba.la lib/a.lo
> stderr:
> stdout:
> libtool: link: using piecewise archive linking...
> libtool: link: ar cru lib/.libs/liba.a lib/.libs/a.o
> libtool: link: ranlib lib/.libs/liba.a
> libtool: link: creating lib/liba.la
> libtool: link: ( cd "lib/.libs" && rm -f "liba.la" && ln -s "../liba.la"
> "liba.la" )
> /template.at:240: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
> lib2/libb.la lib2/b.lo
> stderr:
> stdout:
> libtool: link: using piecewise archive linking...
> libtool: link: ar cru lib2/.libs/libb.a lib2/.libs/b.o
> libtool: link: ranlib lib2/.libs/libb.a
> libtool: link: creating lib2/libb.la
> libtool: link: ( cd "lib2/.libs" && rm -f "libb.la" && ln -s "../libb.la"
> "libb.la" )
> /template.at:242: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
> sub/main $main_o lib2/libb.la lib/liba.la
> stderr:
> stdout:
> libtool: link: g++ -g -O2 -o sub/main sub/main.o lib2/.libs/libb.a
> lib/.libs/liba.a
> /template.at:244: ./sub/main; lt_status=$?; if test $lt_status -eq 0; then :;
> elif test "X$host" != "X$build" && \
> { test -x "./sub/main" || test -x "./sub/main"$EXEEXT; }
> then (exit 77); else (exit $lt_status); fi
> /template.at:247: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
> lib2/libb.la lib2/b.lo -rpath /foo
> stderr:
> stdout:
> libtool: link: rm -fr lib2/.libs/libb.a lib2/.libs/libb.la
> libtool: link: generating symbol list for `libb.la'
> libtool: link: using reloadable object file for export list...
> libtool: link: creating reloadable object files...
> libtool: link: generating symbol list for `libb.la'
> libtool: link: creating a temporary reloadable object file:
> lib2/.libs/libb.la-1.o
> libtool: link: /usr/bin/ld -r -o lib2/.libs/libb.la-1.o lib2/.libs/b.o
> libtool: link: /usr/bin/nm -B -BCpg lib2/.libs/libb.la-1.o | awk '{ if ((($
> 2 == "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) {
> print $ 3 } }' | sort -u > lib2/.libs/libb.exp
> libtool: link: g++ -shared -o lib2/.libs/libb.so.0 lib2/.libs/libb.la-1.o
> -L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0
> -L/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../.. -lstdc++ -lm
> -lc -lgcc_s -Wl,-bnoentry -Wl,-bE:lib2/.libs/libb.exp -Wl,-berok
> libtool: link: ar cru lib2/.libs/libb.a lib2/.libs/libb.so.0
> libtool: link: rm -f lib2/.libs/libb.la-1.o
> libtool: link: creating lib2/libb.la
> libtool: link: ( cd "lib2/.libs" && rm -f "libb.la" && ln -s "../libb.la"
> "libb.la" )
> /template.at:249: $LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $LDFLAGS -o
> sub/main $main_o lib2/libb.la lib/liba.la
> stderr:
> stdout:
> libtool: link: g++ -g -O2 -o sub/.libs/main sub/main.o -Llib2/.libs -lb
> lib/.libs/liba.a
> -Wl,-blibpath:/foo:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0:/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../..:/usr/lib:/lib
>
> libtool: link: creating sub/main
> /template.at:251: ./sub/main; lt_status=$?; if test $lt_status -eq 0; then :;
> elif test "X$host" != "X$build" && \
> { test -x "./sub/main" || test -x "./sub/main"$EXEEXT; }
> then (exit 77); else (exit $lt_status); fi
> 0a1
> > /home/kstemen/libtool/libtool-2.1a/tests/testsuite: line 1280: 1589462
> > Segmentation fault (core dumped) ./sub/main
> /template.at:251: exit code was 139, expected 0
> 49. template.at:126: 49. template test with subdirs (template.at:126): FAILED
> (template.at:251)
>
>
55. cmdline_wrap.at:28: 55. Run tests with low max_cmd_len
(cmdline_wrap.at:28): FAILED (cmdline_wrap.at:43)
## ------------- ##
## ../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 libtool configure 2.1a, which was
| generated by GNU Autoconf 2.61. Invocation command line was
|
| $ ./configure --prefix=/home/kstemen
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = aix64dev
| uname -m = 00CBE1FD4C00
| uname -r = 3
| uname -s = AIX
| uname -v = 5
|
| /usr/bin/uname -p = powerpc
| /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 = 5.3.0.0
| /bin/universe = unknown
|
| PATH: /usr/bin
| PATH: /etc
| PATH: /usr/sbin
| PATH: /usr/ucb
| PATH: /usr/bin/X11
| PATH: /sbin
| PATH: /usr/java14/jre/bin
| PATH: /usr/java14/bin
| PATH: /usr/local/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:2141: checking for a BSD-compatible install
| configure:2197: result: /usr/bin/install -c
| configure:2208: checking whether build environment is sane
| configure:2251: result: yes
| configure:2279: checking for a thread-safe mkdir -p
| configure:2318: result: libltdl/config/install-sh -c -d
| configure:2331: checking for gawk
| configure:2361: result: no
| configure:2331: checking for mawk
| configure:2361: result: no
| configure:2331: checking for nawk
| configure:2347: found /usr/bin/nawk
| configure:2358: result: nawk
| configure:2369: checking whether make sets $(MAKE)
| configure:2390: result: yes
| configure:2585: checking whether subdir libobjs are useable
| configure:2596: result: yes
| configure:2688: checking for gcc
| configure:2704: found /usr/bin/gcc
| configure:2715: result: gcc
| configure:2953: checking for C compiler version
| configure:2960: gcc --version >&5
| gcc (GCC) 4.0.0
| 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:2963: $? = 0
| configure:2970: gcc -v >&5
| Using built-in specs.
| Target: powerpc-ibm-aix5.3.0.0
| Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld
--disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enable-threads
--enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0
| Thread model: aix
| gcc version 4.0.0
| configure:2973: $? = 0
| configure:2980: gcc -V >&5
| gcc: '-V' option must have argument
| configure:2983: $? = 1
| configure:3006: checking for C compiler default output file name
| configure:3033: gcc conftest.c >&5
| configure:3036: $? = 0
| configure:3074: result: a.out
| configure:3091: checking whether the C compiler works
| configure:3101: ./a.out
| configure:3104: $? = 0
| configure:3121: result: yes
| configure:3128: checking whether we are cross compiling
| configure:3130: result: no
| configure:3133: checking for suffix of executables
| configure:3140: gcc -o conftest conftest.c >&5
| configure:3143: $? = 0
| configure:3167: result:
| configure:3173: checking for suffix of object files
| configure:3199: gcc -c conftest.c >&5
| configure:3202: $? = 0
| configure:3225: result: o
| configure:3229: checking whether we are using the GNU C compiler
| configure:3258: gcc -c conftest.c >&5
| configure:3264: $? = 0
| configure:3281: result: yes
| configure:3286: checking whether gcc accepts -g
| configure:3316: gcc -c -g conftest.c >&5
| configure:3322: $? = 0
| configure:3421: result: yes
| configure:3438: checking for gcc option to accept ISO C89
| configure:3512: gcc -c -g -O2 conftest.c >&5
| configure:3518: $? = 0
| configure:3541: result: none needed
| configure:3570: checking for style of include used by make
| configure:3598: result: GNU
| configure:3623: checking dependency style of gcc
| configure:3714: result: gcc3
| configure:3730: checking whether gcc and cc understand -c and -o together
| configure:3765: gcc -c conftest.c -o conftest2.o >&5
| configure:3768: $? = 0
| configure:3774: gcc -c conftest.c -o conftest2.o >&5
| configure:3777: $? = 0
| configure:3788: cc -c conftest.c >&5
| ./configure: line 3789: cc: command not found
| configure:3791: $? = 127
| configure:3829: result: yes
| configure:3860: checking how to run the C preprocessor
| configure:3900: gcc -E conftest.c
| configure:3906: $? = 0
| configure:3937: gcc -E conftest.c
| conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
| configure:3943: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | /* end confdefs.h. */
| | #include <ac_nonexistent.h>
| configure:3976: result: gcc -E
| configure:4005: gcc -E conftest.c
| configure:4011: $? = 0
| configure:4042: gcc -E conftest.c
| conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
| configure:4048: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | /* end confdefs.h. */
| | #include <ac_nonexistent.h>
| configure:4540: checking build system type
| configure:4558: result: powerpc-ibm-aix5.3.0.0
| configure:4580: checking host system type
| configure:4595: result: powerpc-ibm-aix5.3.0.0
| configure:4617: checking for a sed that does not truncate output
| configure:4696: result: /usr/bin/sed
| configure:4714: checking for grep that handles long lines and -e
| configure:4788: result: /usr/bin/grep
| configure:4793: checking for egrep
| configure:4871: result: /usr/bin/grep -E
| configure:4876: checking for fgrep
| configure:4954: result: /usr/bin/grep -F
| configure:4989: checking for ld used by gcc
| configure:5056: result: /usr/bin/ld
| configure:5065: checking if the linker (/usr/bin/ld) is GNU ld
| configure:5080: result: no
| configure:5093: checking for BSD- or MS-compatible name lister (nm)
| configure:5142: result: /usr/bin/nm -B
| configure:5264: checking the name lister (/usr/bin/nm -B) interface
| configure:5271: gcc -c -g -O2 conftest.c >&5
| configure:5274: /usr/bin/nm -B "conftest.o"
| configure:5277: output
| 8 d TOC
| 0 d _conftest.rw_
| 0 D some_variable
| configure:5284: result: BSD nm
| configure:5287: checking whether ln -s works
| configure:5291: result: yes
| configure:5299: checking the maximum length of command line arguments
| configure:5419: result: 18432
| configure:5437: checking whether the shell understands some XSI constructs
| configure:5445: result: yes
| configure:5449: checking whether the shell understands "+="
| configure:5455: result: no
| configure:5490: checking for /usr/bin/ld option to reload object files
| configure:5497: result: -r
| configure:5524: checking how to recognize dependent libraries
| configure:5714: result: pass_all
| configure:5774: checking for ar
| configure:5790: found /usr/bin/ar
| configure:5801: result: ar
| configure:5883: checking for strip
| configure:5899: found /usr/bin/strip
| configure:5910: result: strip
| configure:5986: checking for ranlib
| configure:6002: found /usr/bin/ranlib
| configure:6013: result: ranlib
| configure:6107: checking command to parse /usr/bin/nm -B output from gcc
object
| configure:6225: gcc -c -g -O2 conftest.c >&5
| configure:6228: $? = 0
| configure:6232: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[
]\([BCDT][BCDT]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \>
conftest.nm
| configure:6235: $? = 0
| configure:6289: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
| configure:6292: $? = 0
| configure:6330: result: ok
| configure:6571: checking for ANSI C header files
| configure:6601: gcc -c -g -O2 conftest.c >&5
| configure:6607: $? = 0
| configure:6706: gcc -o conftest -g -O2 conftest.c >&5
| configure:6709: $? = 0
| configure:6715: ./conftest
| configure:6718: $? = 0
| configure:6735: result: yes
| configure:6759: checking for sys/types.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for sys/stat.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for stdlib.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for string.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for memory.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for strings.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for inttypes.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for stdint.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6759: checking for unistd.h
| configure:6780: gcc -c -g -O2 conftest.c >&5
| configure:6786: $? = 0
| configure:6802: result: yes
| configure:6818: checking for dlfcn.h
| configure:6839: gcc -c -g -O2 conftest.c >&5
| configure:6845: $? = 0
| configure:6861: result: yes
| configure:6923: checking for objdir
| configure:6938: result: .libs
| configure:7234: checking if gcc supports -fno-rtti -fno-exceptions
| configure:7252: 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:7256: $? = 0
| configure:7269: result: no
| configure:7289: checking for gcc option to produce PIC
| configure:7544: result: -DPIC
| configure:7556: checking if gcc PIC flag -DPIC works
| configure:7574: gcc -c -g -O2 -DPIC -DPIC conftest.c >&5
| configure:7578: $? = 0
| configure:7591: result: yes
| configure:7615: checking if gcc static flag -static works
| configure:7643: result: no
| configure:7658: checking if gcc supports -c -o file.o
| configure:7679: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
| configure:7683: $? = 0
| configure:7705: result: yes
| configure:7713: checking if gcc supports -c -o file.o
| configure:7760: result: yes
| configure:7793: checking whether the gcc linker (/usr/bin/ld) supports shared
libraries
| configure:8301: gcc -o conftest -g -O2 conftest.c >&5
| configure:8307: $? = 0
| configure:8871: result: yes
| configure:9110: checking dynamic linker characteristics
| configure:9784: result: aix5.3.0.0 ld.so
| configure:9879: checking how to hardcode library paths into programs
| configure:9904: result: immediate
| configure:10023: checking for shl_load
| configure:10079: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .shl_load
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:10085: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 shl_load to an innocuous variant, in case <limits.h> declares
shl_load.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define shl_load innocuous_shl_load
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char shl_load (); 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 shl_load
| |
| | /* 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 shl_load ();
| | /* 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_shl_load || defined __stub___shl_load
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return shl_load ();
| | ;
| | return 0;
| | }
| configure:10102: result: no
| configure:10107: checking for shl_load in -ldld
| configure:10142: gcc -o conftest -g -O2 conftest.c -ldld >&5
| collect2: library libdld not found
| configure:10148: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 shl_load ();
| | int
| | main ()
| | {
| | return shl_load ();
| | ;
| | return 0;
| | }
| configure:10166: result: no
| configure:10171: checking for dlopen
| configure:10227: gcc -o conftest -g -O2 conftest.c >&5
| configure:10233: $? = 0
| configure:10250: result: yes
| configure:10483: checking whether a program can dlopen itself
| configure:10557: gcc -o conftest -g -O2 -DHAVE_DLFCN_H conftest.c >&5
| configure: In function 'main':
| configure:10553: warning: incompatible implicit declaration of built-in
function 'exit'
| configure:10560: $? = 0
| configure:10578: result: no
| configure:10717: checking whether stripping libraries is possible
| configure:10739: result: no
| configure:10757: checking if libtool supports shared libraries
| configure:10759: result: yes
| configure:10762: checking whether to build shared libraries
| configure:10783: result: yes
| configure:10786: checking whether to build static libraries
| configure:10790: result: no
| configure:10825: checking which extension is used for runtime loadable modules
| configure:10835: result: .so
| configure:10845: checking which variable specifies run-time module search path
| configure:10852: result: LIBPATH
| configure:10862: checking for the default library search path
| configure:10869: result: /lib /usr/lib
| configure:10899: checking for library containing dlopen
| configure:10940: gcc -o conftest -g -O2 conftest.c >&5
| configure:10946: $? = 0
| configure:10974: result: none required
| configure:11122: checking for dlerror
| configure:11178: gcc -o conftest -g -O2 conftest.c >&5
| configure:11184: $? = 0
| configure:11202: result: yes
| configure:11217: checking for shl_load
| configure:11296: result: no
| configure:11306: checking for shl_load in -ldld
| configure:11365: result: no
| configure:11483: checking for dld_link in -ldld
| configure:11518: gcc -o conftest -g -O2 conftest.c -ldld >&5
| collect2: library libdld not found
| configure:11524: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | /* end confdefs.h. */
| |
| | /* Override any GCC internal prototype to avoid an error.
| | Use char because int might match the return type of a GCC
| | builtin and then its argument prototype would still apply. */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char dld_link ();
| | int
| | main ()
| | {
| | return dld_link ();
| | ;
| | return 0;
| | }
| configure:11542: result: no
| configure:11580: checking for _ prefix in compiled symbols
| configure:11590: gcc -c -g -O2 conftest.c >&5
| configure:11593: $? = 0
| configure:11597: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[
]\([BCDT][BCDT]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \>
conftest.nm
| configure:11600: $? = 0
| configure:11622: result: no
| configure:11742: checking whether deplibs are loaded by dlopen
| configure:11829: result: yes
| configure:11845: checking for argz.h
| configure:11866: gcc -c -g -O2 conftest.c >&5
| conftest.c:62:18: error: argz.h: No such file or directory
| configure:11872: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 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 <argz.h>
| configure:11888: result: no
| configure:11900: checking for error_t
| configure:11933: gcc -c -g -O2 conftest.c >&5
| conftest.c:32: error: parse error before 'ac__type_new_'
| conftest.c:32: warning: data definition has no type or storage class
| conftest.c: In function 'main':
| conftest.c:36: error: parse error before ')' token
| configure:11939: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | /* end confdefs.h. */
| | #if defined(HAVE_ARGZ_H)
| | # include <argz.h>
| | #endif
| |
| | typedef error_t ac__type_new_;
| | int
| | main ()
| | {
| | if ((ac__type_new_ *) 0)
| | return 0;
| | if (sizeof (ac__type_new_))
| | return 0;
| | ;
| | return 0;
| | }
| configure:11954: result: no
| configure:11987: checking for argz_append
| configure:12043: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .argz_append
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12049: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h. */
| | /* Define argz_append to an innocuous variant, in case <limits.h> declares
argz_append.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define argz_append innocuous_argz_append
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char argz_append (); 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 argz_append
| |
| | /* 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 argz_append ();
| | /* 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_argz_append || defined __stub___argz_append
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return argz_append ();
| | ;
| | return 0;
| | }
| configure:12067: result: no
| configure:11987: checking for argz_create_sep
| configure:12043: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .argz_create_sep
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12049: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h. */
| | /* Define argz_create_sep to an innocuous variant, in case <limits.h>
declares argz_create_sep.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define argz_create_sep innocuous_argz_create_sep
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char argz_create_sep (); 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 argz_create_sep
| |
| | /* 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 argz_create_sep ();
| | /* 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_argz_create_sep || defined __stub___argz_create_sep
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return argz_create_sep ();
| | ;
| | return 0;
| | }
| configure:12067: result: no
| configure:11987: checking for argz_insert
| configure:12043: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .argz_insert
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12049: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h. */
| | /* Define argz_insert to an innocuous variant, in case <limits.h> declares
argz_insert.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define argz_insert innocuous_argz_insert
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char argz_insert (); 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 argz_insert
| |
| | /* 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 argz_insert ();
| | /* 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_argz_insert || defined __stub___argz_insert
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return argz_insert ();
| | ;
| | return 0;
| | }
| configure:12067: result: no
| configure:11987: checking for argz_next
| configure:12043: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .argz_next
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12049: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h. */
| | /* Define argz_next to an innocuous variant, in case <limits.h> declares
argz_next.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define argz_next innocuous_argz_next
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char argz_next (); 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 argz_next
| |
| | /* 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 argz_next ();
| | /* 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_argz_next || defined __stub___argz_next
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return argz_next ();
| | ;
| | return 0;
| | }
| configure:12067: result: no
| configure:11987: checking for argz_stringify
| configure:12043: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .argz_stringify
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12049: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h. */
| | /* Define argz_stringify to an innocuous variant, in case <limits.h>
declares argz_stringify.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define argz_stringify innocuous_argz_stringify
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char argz_stringify (); 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 argz_stringify
| |
| | /* 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 argz_stringify ();
| | /* 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_argz_stringify || defined __stub___argz_stringify
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return argz_stringify ();
| | ;
| | return 0;
| | }
| configure:12067: result: no
| configure:12140: checking whether libtool supports -dlopen/-dlpreopen
| configure:12152: result: yes
| configure:12214: checking for unistd.h
| configure:12257: result: yes
| configure:12214: checking for dl.h
| configure:12235: gcc -c -g -O2 conftest.c >&5
| conftest.c:66:16: error: dl.h: No such file or directory
| configure:12241: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h. */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| |
| | #include <dl.h>
| configure:12257: result: no
| configure:12214: checking for sys/dl.h
| configure:12235: gcc -c -g -O2 conftest.c >&5
| conftest.c:66:20: error: sys/dl.h: No such file or directory
| configure:12241: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h. */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| |
| | #include <sys/dl.h>
| configure:12257: result: no
| configure:12214: checking for dld.h
| configure:12235: gcc -c -g -O2 conftest.c >&5
| conftest.c:66:17: error: dld.h: No such file or directory
| configure:12241: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h. */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| |
| | #include <dld.h>
| configure:12257: result: no
| configure:12214: checking for mach-o/dyld.h
| configure:12235: gcc -c -g -O2 conftest.c >&5
| conftest.c:66:25: error: mach-o/dyld.h: No such file or directory
| configure:12241: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h. */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| |
| | #include <mach-o/dyld.h>
| configure:12257: result: no
| configure:12214: checking for dirent.h
| configure:12235: gcc -c -g -O2 conftest.c >&5
| configure:12241: $? = 0
| configure:12257: result: yes
| configure:12275: checking for closedir
| configure:12331: gcc -o conftest -g -O2 conftest.c >&5
| configure:12337: $? = 0
| configure:12355: result: yes
| configure:12275: checking for opendir
| configure:12331: gcc -o conftest -g -O2 conftest.c >&5
| configure:12337: $? = 0
| configure:12355: result: yes
| configure:12275: checking for readdir
| configure:12331: gcc -o conftest -g -O2 conftest.c >&5
| configure:12337: $? = 0
| configure:12355: result: yes
| configure:12377: checking for strlcat
| configure:12433: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .strlcat
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12439: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DIRENT_H 1
| | #define HAVE_CLOSEDIR 1
| | #define HAVE_OPENDIR 1
| | #define HAVE_READDIR 1
| | /* end confdefs.h. */
| | /* Define strlcat to an innocuous variant, in case <limits.h> declares
strlcat.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define strlcat innocuous_strlcat
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char strlcat (); 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 strlcat
| |
| | /* 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 strlcat ();
| | /* 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_strlcat || defined __stub___strlcat
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return strlcat ();
| | ;
| | return 0;
| | }
| configure:12457: result: no
| configure:12377: checking for strlcpy
| configure:12433: gcc -o conftest -g -O2 conftest.c >&5
| ld: 0711-317 ERROR: Undefined symbol: .strlcpy
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:12439: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DIRENT_H 1
| | #define HAVE_CLOSEDIR 1
| | #define HAVE_OPENDIR 1
| | #define HAVE_READDIR 1
| | /* end confdefs.h. */
| | /* Define strlcpy to an innocuous variant, in case <limits.h> declares
strlcpy.
| | For example, HP-UX 11i <limits.h> declares gettimeofday. */
| | #define strlcpy innocuous_strlcpy
| |
| | /* System header to define __stub macros and hopefully few prototypes,
| | which can conflict with char strlcpy (); 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 strlcpy
| |
| | /* 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 strlcpy ();
| | /* 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_strlcpy || defined __stub___strlcpy
| | choke me
| | #endif
| |
| | int
| | main ()
| | {
| | return strlcpy ();
| | ;
| | return 0;
| | }
| configure:12457: result: no
| configure:12541: checking for g++
| configure:12557: found /usr/bin/g++
| configure:12568: result: g++
| configure:12599: checking for C++ compiler version
| configure:12606: g++ --version >&5
| g++ (GCC) 4.0.0
| 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:12609: $? = 0
| configure:12616: g++ -v >&5
| Using built-in specs.
| Target: powerpc-ibm-aix5.3.0.0
| Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld
--disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enable-threads
--enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0
| Thread model: aix
| gcc version 4.0.0
| configure:12619: $? = 0
| configure:12626: g++ -V >&5
| g++: '-V' option must have argument
| configure:12629: $? = 1
| configure:12632: checking whether we are using the GNU C++ compiler
| configure:12661: g++ -c conftest.cpp >&5
| configure:12667: $? = 0
| configure:12684: result: yes
| configure:12689: checking whether g++ accepts -g
| configure:12719: g++ -c -g conftest.cpp >&5
| configure:12725: $? = 0
| configure:12824: result: yes
| configure:12849: checking dependency style of g++
| configure:12940: result: gcc3
| configure:12963: checking how to run the C++ preprocessor
| configure:12999: g++ -E conftest.cpp
| configure:13005: $? = 0
| configure:13036: g++ -E conftest.cpp
| conftest.cpp:36:28: error: ac_nonexistent.h: No such file or directory
| configure:13042: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DIRENT_H 1
| | #define HAVE_CLOSEDIR 1
| | #define HAVE_OPENDIR 1
| | #define HAVE_READDIR 1
| | /* end confdefs.h. */
| | #include <ac_nonexistent.h>
| configure:13075: result: g++ -E
| configure:13104: g++ -E conftest.cpp
| configure:13110: $? = 0
| configure:13141: g++ -E conftest.cpp
| conftest.cpp:36:28: error: ac_nonexistent.h: No such file or directory
| configure:13147: $? = 1
| configure: failed program was:
| | /* confdefs.h. */
| | #define PACKAGE_NAME "libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.1a"
| | #define PACKAGE_STRING "libtool 2.1a"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE "libtool"
| | #define VERSION "2.1a"
| | #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 LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LIBPATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DIRENT_H 1
| | #define HAVE_CLOSEDIR 1
| | #define HAVE_OPENDIR 1
| | #define HAVE_READDIR 1
| | /* end confdefs.h. */
| | #include <ac_nonexistent.h>
| configure:13321: checking for ld used by g++
| configure:13388: result: /usr/bin/ld
| configure:13397: checking if the linker (/usr/bin/ld) is GNU ld
| configure:13412: result: no
| configure:13467: checking whether the g++ linker (/usr/bin/ld) supports
shared libraries
| configure:13656: g++ -o conftest -g -O2 conftest.cpp >&5
| configure:13662: $? = 0
| configure:14462: result: yes
| configure:14490: g++ -c -g -O2 conftest.cpp >&5
| configure:14493: $? = 0
| configure:14671: checking for g++ option to produce PIC
| configure:14976: result: -DPIC
| configure:14985: checking if g++ PIC flag -DPIC works
| configure:15003: g++ -c -g -O2 -DPIC -DPIC conftest.cpp >&5
| configure:15007: $? = 0
| configure:15020: result: yes
| configure:15041: checking if g++ static flag -static works
| configure:15069: result: no
| configure:15081: checking if g++ supports -c -o file.o
| configure:15102: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
| configure:15106: $? = 0
| configure:15128: result: yes
| configure:15133: checking if g++ supports -c -o file.o
| configure:15180: result: yes
| configure:15210: checking whether the g++ linker (/usr/bin/ld) supports
shared libraries
| configure:15235: result: yes
| configure:15372: checking dynamic linker characteristics
| configure:15994: result: aix5.3.0.0 ld.so
| configure:16038: checking how to hardcode library paths into programs
| configure:16063: result: immediate
| configure:16157: checking for g77
| configure:16187: result: no
| configure:16157: checking for xlf
| configure:16187: result: no
| configure:16157: checking for f77
| configure:16187: result: no
| configure:16157: checking for frt
| configure:16187: result: no
| configure:16157: checking for pgf77
| configure:16187: result: no
| configure:16157: checking for cf77
| configure:16187: result: no
| configure:16157: checking for fort77
| configure:16187: result: no
| configure:16157: checking for fl32
| configure:16187: result: no
| configure:16157: checking for af77
| configure:16187: result: no
| configure:16157: checking for xlf90
| configure:16187: result: no
| configure:16157: checking for f90
| configure:16187: result: no
| configure:16157: checking for pgf90
| configure:16187: result: no
| configure:16157: checking for pghpf
| configure:16187: result: no
| configure:16157: checking for epcf90
| configure:16187: result: no
| configure:16157: checking for gfortran
| configure:16187: result: no
| configure:16157: checking for g95
| configure:16187: result: no
| configure:16157: checking for xlf95
| configure:16187: result: no
| configure:16157: checking for f95
| configure:16187: result: no
| configure:16157: checking for fort
| configure:16187: result: no
| configure:16157: checking for ifort
| configure:16187: result: no
| configure:16157: checking for ifc
| configure:16187: result: no
| configure:16157: checking for efc
| configure:16187: result: no
| configure:16157: checking for pgf95
| configure:16187: result: no
| configure:16157: checking for lf95
| configure:16187: result: no
| configure:16157: checking for ftn
| configure:16187: result: no
| configure:16214: checking for Fortran 77 compiler version
| configure:16221: --version >&5
| ./configure: line 16222: --version: command not found
| configure:16224: $? = 127
| configure:16231: -v >&5
| ./configure: line 16232: -v: command not found
| configure:16234: $? = 127
| configure:16241: -V >&5
| ./configure: line 16242: -V: command not found
| configure:16244: $? = 127
| configure:16252: checking whether we are using the GNU Fortran 77 compiler
| configure:16271: -c conftest.F >&5
| ./configure: line 16272: -c: command not found
| configure:16277: $? = 127
| configure: failed program was:
| | program main
| | #ifndef __GNUC__
| | choke me
| | #endif
| |
| | end
| configure:16294: result: no
| configure:16300: checking whether accepts -g
| configure:16317: -c -g conftest.f >&5
| ./configure: line 16318: -c: command not found
| configure:16323: $? = 127
| configure: failed program was:
| | program main
| |
| | end
| configure:16339: result: no
| configure:18967: checking for gfortran
| configure:18997: result: no
| configure:18967: checking for g95
| configure:18997: result: no
| configure:18967: checking for xlf95
| configure:18997: result: no
| configure:18967: checking for f95
| configure:18997: result: no
| configure:18967: checking for fort
| configure:18997: result: no
| configure:18967: checking for ifort
| configure:18997: result: no
| configure:18967: checking for ifc
| configure:18997: result: no
| configure:18967: checking for efc
| configure:18997: result: no
| configure:18967: checking for pgf95
| configure:18997: result: no
| configure:18967: checking for lf95
| configure:18997: result: no
| configure:18967: checking for ftn
| configure:18997: result: no
| configure:18967: checking for xlf90
| configure:18997: result: no
| configure:18967: checking for f90
| configure:18997: result: no
| configure:18967: checking for pgf90
| configure:18997: result: no
| configure:18967: checking for pghpf
| configure:18997: result: no
| configure:18967: checking for epcf90
| configure:18997: result: no
| configure:18967: checking for g77
| configure:18997: result: no
| configure:18967: checking for xlf
| configure:18997: result: no
| configure:18967: checking for f77
| configure:18997: result: no
| configure:18967: checking for frt
| configure:18997: result: no
| configure:18967: checking for pgf77
| configure:18997: result: no
| configure:18967: checking for cf77
| configure:18997: result: no
| configure:18967: checking for fort77
| configure:18997: result: no
| configure:18967: checking for fl32
| configure:18997: result: no
| configure:18967: checking for af77
| configure:18997: result: no
| configure:19024: checking for Fortran compiler version
| configure:19031: --version >&5
| ./configure: line 19032: --version: command not found
| configure:19034: $? = 127
| configure:19041: -v >&5
| ./configure: line 19042: -v: command not found
| configure:19044: $? = 127
| configure:19051: -V >&5
| ./configure: line 19052: -V: command not found
| configure:19054: $? = 127
| configure:19062: checking whether we are using the GNU Fortran compiler
| configure:19081: -c conftest.F >&5
| ./configure: line 19082: -c: command not found
| configure:19087: $? = 127
| configure: failed program was:
| | program main
| | #ifndef __GNUC__
| | choke me
| | #endif
| |
| | end
| configure:19104: result: no
| configure:19110: checking whether accepts -g
| configure:19127: -c -g conftest.f >&5
| ./configure: line 19128: -c: command not found
| configure:19133: $? = 127
| configure: failed program was:
| | program main
| |
| | end
| configure:19149: result: no
| configure:21888: checking for gcj
| configure:21918: result: no
| configure:24540: checking for windres
| configure:24570: result: no
| configure:24902: creating ./config.status
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by libtool config.status 2.1a, which was
| generated by GNU Autoconf 2.61. Invocation command line was
|
| CONFIG_FILES =
| CONFIG_HEADERS =
| CONFIG_LINKS =
| CONFIG_COMMANDS =
| $ ./config.status
|
| on aix64dev
|
| config.status:1140: creating Makefile
| config.status:1140: creating config.h
| config.status:1428: executing tests/atconfig commands
| config.status:1428: executing depfiles commands
| config.status:1428: executing libtool commands
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_build=powerpc-ibm-aix5.3.0.0
| 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_F77_set=
| ac_cv_env_F77_value=
| ac_cv_env_FCFLAGS_set=
| ac_cv_env_FCFLAGS_value=
| ac_cv_env_FC_set=
| ac_cv_env_FC_value=
| ac_cv_env_FFLAGS_set=
| ac_cv_env_FFLAGS_value=
| ac_cv_env_LDFLAGS_set=
| ac_cv_env_LDFLAGS_value=
| ac_cv_env_LIBS_set=
| ac_cv_env_LIBS_value=
| ac_cv_env_build_alias_set=
| ac_cv_env_build_alias_value=
| ac_cv_env_host_alias_set=
| ac_cv_env_host_alias_value=
| ac_cv_env_target_alias_set=
| ac_cv_env_target_alias_value=
| ac_cv_f77_compiler_gnu=no
| ac_cv_fc_compiler_gnu=no
| ac_cv_func_argz_append=no
| ac_cv_func_argz_create_sep=no
| ac_cv_func_argz_insert=no
| ac_cv_func_argz_next=no
| ac_cv_func_argz_stringify=no
| ac_cv_func_closedir=yes
| ac_cv_func_dlerror=yes
| ac_cv_func_dlopen=yes
| ac_cv_func_opendir=yes
| ac_cv_func_readdir=yes
| ac_cv_func_shl_load=no
| ac_cv_func_strlcat=no
| ac_cv_func_strlcpy=no
| ac_cv_header_argz_h=no
| ac_cv_header_dirent_h=yes
| ac_cv_header_dl_h=no
| ac_cv_header_dld_h=no
| ac_cv_header_dlfcn_h=yes
| ac_cv_header_inttypes_h=yes
| ac_cv_header_mach_o_dyld_h=no
| 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_dl_h=no
| ac_cv_header_sys_stat_h=yes
| ac_cv_header_sys_types_h=yes
| ac_cv_header_unistd_h=yes
| ac_cv_host=powerpc-ibm-aix5.3.0.0
| ac_cv_lib_dld_dld_link=no
| ac_cv_lib_dld_shl_load=no
| ac_cv_objext=o
| ac_cv_path_EGREP='/usr/bin/grep -E'
| ac_cv_path_FGREP='/usr/bin/grep -F'
| ac_cv_path_GREP=/usr/bin/grep
| ac_cv_path_SED=/usr/bin/sed
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_prog_AWK=nawk
| 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_c89=
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_gcc_c_o=yes
| ac_cv_prog_cxx_g=yes
| ac_cv_prog_f77_g=no
| ac_cv_prog_fc_g=no
| ac_cv_prog_make_make_set=yes
| ac_cv_search_dlopen='none required'
| ac_cv_type_error_t=no
| am_cv_CC_dependencies_compiler_type=gcc3
| am_cv_CXX_dependencies_compiler_type=gcc3
| libltdl_cv_lib_dl_dlopen=yes
| libltdl_cv_preloaded_symbols=yes
| libltdl_cv_shlibext=.so
| lt_cv_deplibs_check_method=pass_all
| lt_cv_dlopen=dlopen
| lt_cv_dlopen_libs=
| lt_cv_dlopen_self=no
| lt_cv_file_magic_cmd='$MAGIC_CMD'
| lt_cv_file_magic_test_file=
| lt_cv_ld_reload_flag=-r
| lt_cv_module_path_var=LIBPATH
| 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_prog_compiler_c_o=yes
| lt_cv_prog_compiler_c_o_CXX=yes
| lt_cv_prog_compiler_c_o_RC=yes
| lt_cv_prog_compiler_rtti_exceptions=no
| lt_cv_prog_gnu_ld=no
| lt_cv_prog_gnu_ldcxx=no
| lt_cv_sys_dlopen_deplibs=yes
| lt_cv_sys_dlsearch_path='/lib /usr/lib'
| lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDT][BCDT]*\)[
][ ]*\([_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\", (void *) 0},/p'\'' -e '\''s/^[BCDT]* \([^ ]*\) \([^ ]*\)$/ {"\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/^[BCDT]* \([^ ]*\) \(lib[^ ]*\)$/
{"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDT]* \([^ ]*\) \([^ ]*\)$/
{"lib\2", (void *) \&\2},/p'\'''
| lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int
\1();/p'\'' -e '\''s/^[BCDT]* .* \(.*\)$/extern char \1;/p'\'''
| lt_cv_sys_max_cmd_len=18432
| lt_cv_sys_symbol_underscore=no
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| ACLOCAL='${SHELL} /home/kstemen/libtool/libtool-2.1a/libltdl/config/missing
--run aclocal-1.10'
| AMDEPBACKSLASH='\'
| AMDEP_FALSE='#'
| AMDEP_TRUE=''
| AMTAR='${SHELL} /home/kstemen/libtool/libtool-2.1a/libltdl/config/missing
--run tar'
| AR='ar'
| ARGZ_H='argz.h'
| AS='as'
| AUTOCONF='${SHELL} /home/kstemen/libtool/libtool-2.1a/libltdl/config/missing
--run autoconf'
| AUTOHEADER='${SHELL}
/home/kstemen/libtool/libtool-2.1a/libltdl/config/missing --run autoheader'
| AUTOM4TE='autom4te'
| AUTOMAKE='${SHELL} /home/kstemen/libtool/libtool-2.1a/libltdl/config/missing
--run automake-1.10'
| AUTOTEST='$(AUTOM4TE) --language=autotest'
| AWK='nawk'
| CC='gcc'
| CCDEPMODE='depmode=gcc3'
| CFLAGS='-g -O2'
| CONFIG_STATUS_DEPENDENCIES='$(top_srcdir)/ChangeLog'
| CONF_SUBDIRS='tests/cdemo tests/demo tests/depdemo tests/f77demo tests/fcdemo
tests/mdemo tests/mdemo2 tests/pdemo tests/tagdemo'
| CONVENIENCE_LTDL_FALSE=''
| CONVENIENCE_LTDL_TRUE='#'
| CPP='gcc -E'
| CPPFLAGS=''
| CXX='g++'
| CXXCPP='g++ -E'
| CXXDEPMODE='depmode=gcc3'
| CXXFLAGS='-g -O2'
| CYGPATH_W='echo'
| DEFS='-DHAVE_CONFIG_H'
| DEPDIR='.deps'
| DIST_MAKEFILE_LIST='tests/cdemo/Makefile tests/demo/Makefile
tests/depdemo/Makefile tests/f77demo/Makefile tests/fcdemo/Makefile
tests/mdemo/Makefile tests/mdemo2/Makefile tests/pdemo/Makefile
tests/tagdemo/Makefile '
| DLLTOOL='dlltool'
| DUMPBIN=''
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='/usr/bin/grep -E'
| EXEEXT=''
| F77=''
| FC=''
| FCFLAGS=''
| FFLAGS=''
| FGREP='/usr/bin/grep -F'
| GCJ=''
| GCJFLAGS='-g -O2'
| GREP='/usr/bin/grep'
| HAVE_CXX_FALSE='#'
| HAVE_CXX_TRUE=''
| HAVE_F77_FALSE=''
| HAVE_F77_TRUE='#'
| HAVE_FC_FALSE=''
| HAVE_FC_TRUE='#'
| HAVE_GCJ_FALSE=''
| HAVE_GCJ_TRUE='#'
| HAVE_RC_FALSE=''
| HAVE_RC_TRUE='#'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_LTDL_FALSE='#'
| INSTALL_LTDL_TRUE=''
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
| LASTRELEASE='2.1'
| LD='/usr/bin/ld'
| LDFLAGS=''
| LIBADD_DL=' '
| LIBADD_DLD_LINK=''
| LIBADD_DLOPEN=''
| LIBADD_SHL_LOAD=''
| LIBOBJS=' ${LIBOBJDIR}argz$U.o ${LIBOBJDIR}lt__strl$U.o'
| LIBS=''
| LIBTOOL='$(SHELL) $(top_builddir)/libtool'
| LN_S='ln -s'
| LTDLOPEN='libltdl'
| LTDL_SUBDIR_LIBOBJS_FALSE='#'
| LTDL_SUBDIR_LIBOBJS_TRUE=''
| LTLIBOBJS=' ${LIBOBJDIR}argz$U.lo ${LIBOBJDIR}lt__strl$U.lo'
| LT_CONFIG_H='config.h'
| LT_DLLOADERS=' libltdl/dlopen.la'
| LT_DLPREOPEN='-dlpreopen libltdl/dlopen.la '
| M4SH='$(AUTOM4TE) --language=m4sh'
| MAKEINFO='${SHELL} /home/kstemen/libtool/libtool-2.1a/libltdl/config/missing
--run makeinfo'
| NM='/usr/bin/nm -B'
| OBJDUMP='objdump'
| OBJEXT='o'
| PACKAGE='libtool'
| PACKAGE_BUGREPORT='address@hidden'
| PACKAGE_NAME='libtool'
| PACKAGE_STRING='libtool 2.1a'
| PACKAGE_TARNAME='libtool'
| PACKAGE_VERSION='2.1a'
| PATH_SEPARATOR=':'
| RANLIB='ranlib'
| RC=''
| SED='/usr/bin/sed'
| SET_MAKE=''
| SHELL='/bin/sh'
| STRIP='strip'
| TIMESTAMP=' 1.2478 2007/06/30 09:31:28'
| VERSION='2.1a'
| abs_top_builddir=''
| abs_top_srcdir=''
| ac_ct_CC='gcc'
| ac_ct_CXX='g++'
| ac_ct_DUMPBIN=''
| ac_ct_F77=''
| ac_ct_FC=''
| aclocaldir='${datadir}/aclocal'
| 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='powerpc-ibm-aix5.3.0.0'
| build_alias=''
| build_cpu='powerpc'
| build_os='aix5.3.0.0'
| build_vendor='ibm'
| datadir='${datarootdir}'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='${prefix}'
| host='powerpc-ibm-aix5.3.0.0'
| host_alias=''
| host_cpu='powerpc'
| host_os='aix5.3.0.0'
| host_vendor='ibm'
| htmldir='${docdir}'
| includedir='${prefix}/include'
| infodir='${datarootdir}/info'
| install_sh='$(SHELL)
/home/kstemen/libtool/libtool-2.1a/libltdl/config/install-sh'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localedir='${datarootdir}/locale'
| localstatedir='${prefix}/var'
| lt_ECHO='echo'
| mandir='${datarootdir}/man'
| mkdir_p='$(top_builddir)/libltdl/config/install-sh -c -d'
| oldincludedir='/usr/include'
| package_revision='1.2478'
| pdfdir='${docdir}'
| pkgdatadir='${datadir}/libtool'
| prefix='/home/kstemen'
| program_transform_name='s,x,x,'
| psdir='${docdir}'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sys_symbol_underscore='no'
| sysconfdir='${prefix}/etc'
| target_alias=''
|
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
|
| #define PACKAGE_NAME "libtool"
| #define PACKAGE_TARNAME "libtool"
| #define PACKAGE_VERSION "2.1a"
| #define PACKAGE_STRING "libtool 2.1a"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "libtool"
| #define VERSION "2.1a"
| #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 LT_MODULE_EXT ".so"
| #define LT_MODULE_PATH_VAR "LIBPATH"
| #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| #define HAVE_LIBDL 1
| #define HAVE_DLERROR 1
| #define HAVE_LIBDLLOADER 1
| #define error_t int
| #define __error_t_defined 1
| #define HAVE_PRELOADED_SYMBOLS 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_CLOSEDIR 1
| #define HAVE_OPENDIR 1
| #define HAVE_READDIR 1
|
| configure: exit 0