BIND 10 master, updated. 3a8e933c07b9493fd5deb97d86433532c68cce8e [master] Use serial-tests only where available
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Feb 5 11:46:55 UTC 2013
The branch, master has been updated
via 3a8e933c07b9493fd5deb97d86433532c68cce8e (commit)
from f7a77b8a0b46d3a01fc3a31a303e029da1c5f6b3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3a8e933c07b9493fd5deb97d86433532c68cce8e
Author: Mukund Sivaraman <muks at isc.org>
Date: Tue Feb 5 17:08:20 2013 +0530
[master] Use serial-tests only where available
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 19ef870..66b15d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,13 @@
AC_PREREQ([2.59])
AC_INIT(bind10, 20121219, bind10-dev at isc.org)
AC_CONFIG_SRCDIR(README)
-AM_INIT_AUTOMAKE([foreign serial-tests])
+# serial-tests is not available in automake version before 1.13. In
+# automake 1.13 and higher, AM_PROG_INSTALL is undefined, so we'll check
+# that and conditionally use serial-tests.
+AM_INIT_AUTOMAKE(
+ [foreign]
+ m4_ifndef([AM_PROG_INSTALL], [serial-tests])
+)
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])dnl be backward compatible
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4macros])
More information about the bind10-changes
mailing list