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:
parent
0a7192ce8b
commit
e21ea9b167
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue