Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
3a8e933c
Commit
3a8e933c
authored
Feb 05, 2013
by
Mukund Sivaraman
Browse files
[master] Use serial-tests only where available
parent
f7a77b8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
3a8e933c
...
@@ -4,7 +4,13 @@
...
@@ -4,7 +4,13 @@
AC_PREREQ([2.59])
AC_PREREQ([2.59])
AC_INIT(bind10, 20121219, bind10-dev@isc.org)
AC_INIT(bind10, 20121219, bind10-dev@isc.org)
AC_CONFIG_SRCDIR(README)
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
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])dnl be backward compatible
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4macros])
AC_CONFIG_MACRO_DIR([m4macros])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment