diff --git a/configure.ac b/configure.ac index 2f7d8333f5..8e4a9d12b2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,15 @@ -AC_INIT(nix, 0.3) +AC_INIT(nix, "0.3") AC_CONFIG_SRCDIR(src/nix.cc) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE +# Put the revision number in the version. +if REVISION=`svnversion $srcdir 2> /dev/null`; then + if test "$REVISION" != "exported"; then + VERSION="$VERSION-r$REVISION" + fi +fi + AC_PREFIX_DEFAULT(/nix) AC_CANONICAL_HOST