[v9_9] work around libtool issue
- revert d3617e0d87
- use -Xcompiler option to libtool so it won't suppress -shared
- regenerate configure
Conflicts:
bin/tests/system/dlzexternal/Makefile.in
This commit is contained in:
6
configure
vendored
6
configure
vendored
@@ -19623,7 +19623,11 @@ if test "$dlopen" = "yes"; then
|
||||
SO_CFLAGS="-fPIC"
|
||||
if test "$have_dl" = "yes"
|
||||
then
|
||||
SO_LD="${CC} -shared"
|
||||
if test "$use_libtool" = "yes"; then
|
||||
SO_LD="${CC} -Xcompiler -shared"
|
||||
else
|
||||
SO_LD="${CC} -shared"
|
||||
fi
|
||||
else
|
||||
SO_LD="ld -shared"
|
||||
fi
|
||||
|
||||
@@ -3394,7 +3394,11 @@ if test "$dlopen" = "yes"; then
|
||||
SO_CFLAGS="-fPIC"
|
||||
if test "$have_dl" = "yes"
|
||||
then
|
||||
SO_LD="${CC} -shared"
|
||||
if test "$use_libtool" = "yes"; then
|
||||
SO_LD="${CC} -Xcompiler -shared"
|
||||
else
|
||||
SO_LD="${CC} -shared"
|
||||
fi
|
||||
else
|
||||
SO_LD="ld -shared"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user