X-Git-Url: http://git.ipfire.org/?p=oddments%2Fddns.git;a=blobdiff_plain;f=configure.ac;h=4199a19384480867e909b899341f5c7ecf4ee46b;hp=fae19f04630ef2c49322a0b983fb3137f97ce483;hb=7bf32698e89c1c3abdf0bd76fd3cec4f86a8e622;hpb=dc11f1ea84d1f1200ea2442cb3010254841ca115 diff --git a/configure.ac b/configure.ac index fae19f0..4199a19 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_PREREQ([2.64]) AC_INIT([ddns], - [0.01], + [003], [info@ipfire.org], [ddns], [http://git.ipfire.org/?p=oddments/ddns.git;a=summary]) @@ -49,10 +49,17 @@ AC_SUBST(GETTEXT_PACKAGE) AC_PROG_LN_S AC_PROG_MKDIR_P +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([ @@ -63,6 +70,10 @@ AC_CONFIG_FILES([ AC_OUTPUT AC_MSG_RESULT([ - $PACKAGE_NAME $VERSION + ${PACKAGE_NAME} ${VERSION} + + prefix : ${prefix} + sysconfdir : ${sysconfdir} + nsupdate : ${NSUPDATE} ])