2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 06:55:30 +00:00

with-zlib should be auto but forced on by default for developers

This commit is contained in:
Mark Andrews
2016-03-02 12:33:36 +11:00
parent 806e05d28a
commit a97185d9e0
2 changed files with 4 additions and 2 deletions

3
configure vendored
View File

@@ -11463,6 +11463,7 @@ yes)
test "${enable_symtable+set}" = set || enable_symtable=all test "${enable_symtable+set}" = set || enable_symtable=all
test "${enable_warn_error+set}" = set || enable_warn_error=yes test "${enable_warn_error+set}" = set || enable_warn_error=yes
test "${enable_warn_shadow+set}" = set || enable_warn_shadow=yes test "${enable_warn_shadow+set}" = set || enable_warn_shadow=yes
test "${with_zlib+set}" = set || with_zlib=yes
;; ;;
esac esac
@@ -16758,7 +16759,7 @@ $as_echo_n "checking for zlib library... " >&6; }
if test "${with_zlib+set}" = set; then : if test "${with_zlib+set}" = set; then :
withval=$with_zlib; use_zlib="$withval" withval=$with_zlib; use_zlib="$withval"
else else
use_zlib="yes" use_zlib="auto"
fi fi

View File

@@ -93,6 +93,7 @@ yes)
test "${enable_symtable+set}" = set || enable_symtable=all test "${enable_symtable+set}" = set || enable_symtable=all
test "${enable_warn_error+set}" = set || enable_warn_error=yes test "${enable_warn_error+set}" = set || enable_warn_error=yes
test "${enable_warn_shadow+set}" = set || enable_warn_shadow=yes test "${enable_warn_shadow+set}" = set || enable_warn_shadow=yes
test "${with_zlib+set}" = set || with_zlib=yes
;; ;;
esac esac
@@ -2213,7 +2214,7 @@ AC_SUBST(JSONSTATS)
AC_MSG_CHECKING(for zlib library) AC_MSG_CHECKING(for zlib library)
AC_ARG_WITH(zlib, AC_ARG_WITH(zlib,
[ --with-zlib[=PATH] build with zlib for HTTP compression [[default=yes]] ], [ --with-zlib[=PATH] build with zlib for HTTP compression [[default=yes]] ],
use_zlib="$withval", use_zlib="yes") use_zlib="$withval", use_zlib="auto")
have_zlib="" have_zlib=""
case "$use_zlib" in case "$use_zlib" in