From: Alexandre Oliva Date: Mon, 26 Apr 1999 23:34:46 +0000 (+0000) Subject: * ltconfig.in (aix4.[01], always_export_symbols): The case pattern X-Git-Tag: release-1-3b~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3734e02739f584bc6f76dbbdc751ec162753bd0;p=thirdparty%2Flibtool.git * ltconfig.in (aix4.[01], always_export_symbols): The case pattern would never match; fixed. Reported by Stephan Kulow --- diff --git a/ChangeLog b/ChangeLog index fdd7a3da2..cdf20eb1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-04-26 Alexandre Oliva + + * ltconfig.in (aix4.[01], always_export_symbols): The case pattern + would never match; fixed. + Reported by Stephan Kulow + 1999-04-25 Alexandre Oliva * libtool.m4 (OBJDUMP): Pass it to ltconfig. diff --git a/ltconfig.in b/ltconfig.in index f01cabf96..e0757dcec 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1208,7 +1208,7 @@ else 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}' - case "$host_os" in 4.[01]|4.[01].*) + 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 ;; esac