2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

3217. [cleanup] Fix build problem with --disable-static. [RT #26476]

This commit is contained in:
Evan Hunt
2011-11-16 00:42:07 +00:00
parent 39272481b5
commit 6fb6f8a226
3 changed files with 9 additions and 7 deletions

View File

@@ -1,4 +1,6 @@
3216. [bug] resolver.c:validated() was not thread-safe. [RT #26478]
3217. [cleanup] Fix build problem with --disable-static. [RT #26476]
3216. [bug] resolver.c:validated() was not thread-safe. [RT #26478]
3215. [bug] 'rndc recursing' could cause a core dump. [RT #26495]

View File

@@ -12,7 +12,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: Makefile.in,v 1.3 2011/03/11 07:11:07 each Exp $
# $Id: Makefile.in,v 1.4 2011/11/16 00:42:07 each Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@@ -49,7 +49,7 @@ dlopen@EXEEXT@: ${DLOPENOBJS}
-o $@ ${DLOPENOBJS} ${LIBS}
driver.@SO@: ${SO_OBJS}
@SO_LD@ -o $@ driver.o
${LIBTOOL_MODE_LINK} @SO_LD@ -o $@ driver.@O@
clean distclean::
rm -f ${TARGETS}

View File

@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.530 $)
AC_REVISION($Revision: 1.531 $)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.59)
@@ -1437,9 +1437,9 @@ case $use_libtool in
O=lo
A=la
LIBTOOL_MKDEP_SED='s;\.o;\.lo;'
LIBTOOL_MODE_COMPILE='--mode=compile'
LIBTOOL_MODE_INSTALL='--mode=install'
LIBTOOL_MODE_LINK='--mode=link'
LIBTOOL_MODE_COMPILE='--mode=compile --tag=CC'
LIBTOOL_MODE_INSTALL='--mode=install --tag=CC'
LIBTOOL_MODE_LINK='--mode=link --tag=CC'
case "$host" in
*) LIBTOOL_ALLOW_UNDEFINED= ;;
esac