X-Git-Url: http://git.ipfire.org/?p=oddments%2Fddns.git;a=blobdiff_plain;f=configure.ac;h=031d7092fbdae5337e4179c19f82264b5590175e;hp=d537597584c66aa2878b8c0bf9e457a6ce3e512b;hb=4ab83cf9bb512d4064e52afebb2e3cf9897e45b3;hpb=b5579c29720301f247bf923a0dd1e42ee475ba53 diff --git a/configure.ac b/configure.ac index d537597..031d709 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_PREREQ([2.64]) AC_INIT([ddns], - [001], + [002], [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} ])