Fix LDSHARED on AIX

Stop trying to use an ld_so_aix script which hasn't been present in
the tree since at least the start of git history in 1999.

Fixes #1919
This commit is contained in:
Olly Betts 2022-01-26 15:16:39 +13:00
commit e21ea9b167

View file

@ -144,7 +144,7 @@ AC_MSG_CHECKING(LDSHARED)
if test -z "$LDSHARED"
then
case $host in
*-*-aix*) LDSHARED="\$(srcdir)/ld_so_aix \$(CC)";;
*-*-aix*) LDSHARED="$CC -shared";;
*-*-cygwin* | *-*-mingw*)
if test "$GCC" = yes; then
LDSHARED="\$(CC) -shared"