Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac (renamed from configure.in)25
1 files changed, 12 insertions, 13 deletions
diff --git a/configure.in b/configure.ac
index 42d43af..cb8ac36 100644
--- a/configure.in
+++ b/configure.ac
@@ -1,20 +1,18 @@
-AC_INIT(configure.in)
-
dnl ----------------------------------------------------------------
dnl append SVN revision to the version number
-OSIRIONVERSION='0.2.4'
-SVNREVISION=`svnversion $srcdir`
-if test ! -z "$SVNREVISION"; then
- OSIRIONVERSION="${OSIRIONVERSION}-svn${SVNREVISION}"
-fi
+dnl determine the svn revision number
+define([svnversion], esyscmd([sh -c "echo -n 'svn'; svnversion -q|tr -d '\n'"]))
+
+AC_INIT([osirion], [0.2.4-svnversion])
-AM_CONFIG_HEADER(src/config.h)
-AM_INIT_AUTOMAKE(osirion, $OSIRIONVERSION)
+AC_CONFIG_HEADERS(src/config.h)
AC_LANG_CPLUSPLUS
AC_PROG_CXX
-AM_PROG_LIBTOOL
+AC_PROG_LIBTOOL
+
+AM_INIT_AUTOMAKE
dnl KDE_FIND_PATH(programm-name, variable-name, list of directories,
dnl if-not-found, test-parameter)
@@ -508,7 +506,7 @@ dnl Write makefiles and config.h
AM_CONDITIONAL(BUILD_CLIENT, test "x$BUILD_CLIENT" = xyes)
AM_CONDITIONAL(BUILD_DEDICATED, test "x$BUILD_CLIENT" = xno)
-AC_OUTPUT( \
+AC_CONFIG_FILES([ \
src/auxiliary/Makefile \
src/math/Makefile \
src/sys/Makefile \
@@ -525,8 +523,9 @@ AC_OUTPUT( \
src/game/intro/Makefile \
src/game/Makefile \
src/Makefile \
- Makefile
-)
+ Makefile])
+
+AC_OUTPUT
dnl ---------------------------------------------------------------
dnl Configuration summary