mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-16 07:22:57 -04:00
[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:
parent
63dd467330
commit
cdb1120da8
2 changed files with 10 additions and 2 deletions
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue