2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 21:47: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:
Mark Andrews 2010-03-18 13:28:32 +00:00
parent e63dcf7530
commit 003fd2f720
2 changed files with 17 additions and 1 deletions

View File

@ -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
don't like it. [RT #20986]

View File

@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.489 $)
AC_REVISION($Revision: 1.490 $)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.59)
@ -3283,6 +3283,18 @@ AC_CONFIG_FILES([
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
cat << \EOF
BIND is being built without OpenSSL. This means it will not have DNSSEC support.