mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 13:38:26 +00:00
[v9_9] work around libtool issue
- revert d3617e0d87428168e326830311dc074f0e31b77e - 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:
parent
63dd467330
commit
cdb1120da8
6
configure
vendored
6
configure
vendored
@ -19623,7 +19623,11 @@ if test "$dlopen" = "yes"; then
|
|||||||
SO_CFLAGS="-fPIC"
|
SO_CFLAGS="-fPIC"
|
||||||
if test "$have_dl" = "yes"
|
if test "$have_dl" = "yes"
|
||||||
then
|
then
|
||||||
SO_LD="${CC} -shared"
|
if test "$use_libtool" = "yes"; then
|
||||||
|
SO_LD="${CC} -Xcompiler -shared"
|
||||||
|
else
|
||||||
|
SO_LD="${CC} -shared"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
SO_LD="ld -shared"
|
SO_LD="ld -shared"
|
||||||
fi
|
fi
|
||||||
|
@ -3394,7 +3394,11 @@ if test "$dlopen" = "yes"; then
|
|||||||
SO_CFLAGS="-fPIC"
|
SO_CFLAGS="-fPIC"
|
||||||
if test "$have_dl" = "yes"
|
if test "$have_dl" = "yes"
|
||||||
then
|
then
|
||||||
SO_LD="${CC} -shared"
|
if test "$use_libtool" = "yes"; then
|
||||||
|
SO_LD="${CC} -Xcompiler -shared"
|
||||||
|
else
|
||||||
|
SO_LD="${CC} -shared"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
SO_LD="ld -shared"
|
SO_LD="ld -shared"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user