]> git.ipfire.org Git - oddments/ddns.git/blobdiff - configure.ac
Bump version to 006
[oddments/ddns.git] / configure.ac
index a8920957b594e459740d718104a682346eba4521..c036a075aaa7c58eb5cee546e9792f10e306a9fe 100644 (file)
@@ -21,7 +21,7 @@
 AC_PREREQ([2.64])
 
 AC_INIT([ddns],
-       [004],
+       [006],
        [info@ipfire.org],
        [ddns],
        [http://git.ipfire.org/?p=oddments/ddns.git;a=summary])
@@ -51,11 +51,22 @@ AC_PROG_LN_S
 AC_PROG_MKDIR_P
 AC_PROG_SED
 
+AC_PATH_PROG([XSLTPROC], [xsltproc])
+
 # Python
 AM_PATH_PYTHON([2.7])
 
 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
@@ -68,4 +79,6 @@ AC_MSG_RESULT([
 
        prefix            : ${prefix}
        sysconfdir        : ${sysconfdir}
+
+       Generate man-pages : ${have_manpages}
 ])