]> git.ipfire.org Git - oddments/ddns.git/blobdiff - configure.ac
Add ddns.1 manpage.
[oddments/ddns.git] / configure.ac
index d537597584c66aa2878b8c0bf9e457a6ce3e512b..4199a19384480867e909b899341f5c7ecf4ee46b 100644 (file)
@@ -21,7 +21,7 @@
 AC_PREREQ([2.64])
 
 AC_INIT([ddns],
-       [001],
+       [003],
        [info@ipfire.org],
        [ddns],
        [http://git.ipfire.org/?p=oddments/ddns.git;a=summary])
@@ -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([
@@ -64,6 +70,10 @@ AC_CONFIG_FILES([
 
 AC_OUTPUT
 AC_MSG_RESULT([
-       $PACKAGE_NAME $VERSION
+       ${PACKAGE_NAME} ${VERSION}
+
+       prefix            : ${prefix}
+       sysconfdir        : ${sysconfdir}
 
+       nsupdate          : ${NSUPDATE}
 ])