mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 14:07:59 +00:00
2868. [cleanup] Run "make clean" at the end of configure to ensure
any changes made by configure are integrated. Use --with-make-clean=no to disable. [RT #20994]
This commit is contained in:
4
CHANGES
4
CHANGES
@@ -1,3 +1,7 @@
|
|||||||
|
2868. [cleanup] Run "make clean" at the end of configure to ensure
|
||||||
|
any changes made by configure are integrated.
|
||||||
|
Use --with-make-clean=no to disable. [RT #20994]
|
||||||
|
|
||||||
2867. [bug] Don't set GSS_C_SEQUENCE_FLAG as Windows DNS servers
|
2867. [bug] Don't set GSS_C_SEQUENCE_FLAG as Windows DNS servers
|
||||||
don't like it. [RT #20986]
|
don't like it. [RT #20986]
|
||||||
|
|
||||||
|
14
configure.in
14
configure.in
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
|
|||||||
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
||||||
AC_DIVERT_POP()dnl
|
AC_DIVERT_POP()dnl
|
||||||
|
|
||||||
AC_REVISION($Revision: 1.489 $)
|
AC_REVISION($Revision: 1.490 $)
|
||||||
|
|
||||||
AC_INIT(lib/dns/name.c)
|
AC_INIT(lib/dns/name.c)
|
||||||
AC_PREREQ(2.59)
|
AC_PREREQ(2.59)
|
||||||
@@ -3283,6 +3283,18 @@ AC_CONFIG_FILES([
|
|||||||
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
|
#
|
||||||
|
# Now that the Makefiles exist we can ensure that everything is rebuilt.
|
||||||
|
#
|
||||||
|
AC_ARG_WITH(make-clean,
|
||||||
|
[ --with-make-clean Run "make clean" at end of configure [[yes|no]].],
|
||||||
|
make_clean="$withval", make_clean="yes")
|
||||||
|
case "$make_clean" in
|
||||||
|
yes)
|
||||||
|
make clean
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
if test "X$USE_OPENSSL" = "X"; then
|
if test "X$USE_OPENSSL" = "X"; then
|
||||||
cat << \EOF
|
cat << \EOF
|
||||||
BIND is being built without OpenSSL. This means it will not have DNSSEC support.
|
BIND is being built without OpenSSL. This means it will not have DNSSEC support.
|
||||||
|
Reference in New Issue
Block a user