From 035f1ee37d239091175090a454a19b5cdb904621 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 8 Jul 2014 18:04:02 +0000 Subject: [PATCH] configure: Check for existance of nsupdate --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index d537597..ae217ac 100644 --- a/configure.ac +++ b/configure.ac @@ -54,6 +54,12 @@ AC_PROG_SED # Python AM_PATH_PYTHON([2.7]) +# BIND nsupdate +AC_CHECK_TOOL([NSUPDATE], [nsupdate]) +if test -z "${NSUPDATE}"; then + AC_MSG_ERROR([*** nsupdate not found]) +fi + save_LIBS="$LIBS" AC_CONFIG_FILES([ @@ -66,4 +72,5 @@ AC_OUTPUT AC_MSG_RESULT([ $PACKAGE_NAME $VERSION + nsupdate: ${NSUPDATE} ]) -- 2.39.2