]> git.ipfire.org Git - oddments/ddns.git/blobdiff - configure.ac
Bump version to 006
[oddments/ddns.git] / configure.ac
index 031d7092fbdae5337e4179c19f82264b5590175e..c036a075aaa7c58eb5cee546e9792f10e306a9fe 100644 (file)
@@ -21,7 +21,7 @@
 AC_PREREQ([2.64])
 
 AC_INIT([ddns],
-       [002],
+       [006],
        [info@ipfire.org],
        [ddns],
        [http://git.ipfire.org/?p=oddments/ddns.git;a=summary])
@@ -51,17 +51,22 @@ AC_PROG_LN_S
 AC_PROG_MKDIR_P
 AC_PROG_SED
 
+AC_PATH_PROG([XSLTPROC], [xsltproc])
+
 # 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"
 
+# ------------------------------------------------------------------------------
+have_manpages=no
+AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-man-pages],
+       [do not install man pages]))
+AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
+AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
+
+# ------------------------------------------------------------------------------
+
 AC_CONFIG_FILES([
        Makefile
        po/Makefile.in
@@ -75,5 +80,5 @@ AC_MSG_RESULT([
        prefix            : ${prefix}
        sysconfdir        : ${sysconfdir}
 
-       nsupdate          : ${NSUPDATE}
+       Generate man-pages : ${have_manpages}
 ])