diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 3f0478f..1476908 100644 --- a/configure.ac +++ b/configure.ac @@ -4,8 +4,10 @@ # Autoconf requirements ############################################################ +m4_include([svnrev.m4]) + AC_PREREQ(2.59) -AC_INIT([chrysalide], [0.3.78], [nocbos@gmail.com]) +AC_INIT([chrysalide], [svnversion], [nocbos@gmail.com]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) @@ -89,14 +91,14 @@ AC_CHECK_FUNCS([strrchr]) #--- Autoheader Macros -AH_TEMPLATE([VERSION], [Define the version number of the program for the about box.]) +AH_TEMPLATE([REVISION], [Define the version number of the program for the about box.]) AH_TEMPLATE([PACKAGE_DATA_DIR], [Define the directory where the associated data will be installed.]) AH_TEMPLATE([PACKAGE_SOURCE_DIR], [Define the directory where the code source is waiting for being compiled.]) AH_TEMPLATE([PLUGINS_DIR], [Define the directory where the plugins are installed.]) AH_TEMPLATE([LOCALE_DIR], [Define the directory where the message catalogs are installed.]) -AC_DEFINE_UNQUOTED(VERSION, AC_PACKAGE_VERSION) +AC_DEFINE_UNQUOTED(REVISION, AC_PACKAGE_VERSION) if test "x${datadir}" = 'x${prefix}/share'; then if test "x${prefix}" = "xNONE"; then @@ -363,7 +365,7 @@ AC_OUTPUT echo -echo $PACKAGE $VERSION +echo $PACKAGE REVISION echo echo The GNU Image Manipulation Program Toolkit... : $libgtk_version |