From e21ea9b167d3e554961ec6c88c896f826743d39b Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 26 Jan 2022 15:16:39 +1300 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 209dba1b8..3353487a1 100644 --- a/configure.ac +++ b/configure.ac @@ -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"