From 2c3100dd18fd35b28437c7283ce572fd93eb6bad Mon Sep 17 00:00:00 2001 From: Oliver Rauch Date: Wed, 22 Nov 2000 23:10:46 +0000 Subject: [PATCH] 2000-11-22 Oliver Rauch * changed configure and configure.in, removed test for sting.h/strings.h this is not needed because we use strchr instead (always in string.h) of index (sometimes in string.h, sometimes in strings.h) * changed ltconfig for aix4*, repleace -o $objdir/$soname by -o $lib, the shared libraries are handled correct now --- ltconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltconfig b/ltconfig index a14e872e9..02c5b3dae 100755 --- a/ltconfig +++ b/ltconfig @@ -1297,8 +1297,8 @@ else hardcode_direct=yes fi allow_undefined_flag=' ${wl}-berok' - archive_cmds="\$CC $shared_flag"' -o $objdir/$soname $libobjs $deplibs $linkopts ${wl}-bexpall ${wl}-bnoentry${allow_undefined_flag}' - archive_expsym_cmds="\$CC $shared_flag"' -o $objdir/$soname $libobjs $deplibs $linkopts ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}' + archive_cmds="\$CC $shared_flag"' -o $lib $libobjs $deplibs $linkopts ${wl}-bexpall ${wl}-bnoentry${allow_undefined_flag}' + archive_expsym_cmds="\$CC $shared_flag"' -o $lib $libobjs $deplibs $linkopts ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}' case "$host_os" in aix4.[01]|aix4.[01].*) # According to Greg Wooledge, -bexpall is only supported from AIX 4.2 on always_export_symbols=yes ;;