From: wolf Date: Mon, 9 Sep 2002 23:37:54 +0000 (+0000) Subject: Remove some messing with version numbers that does not seem to work X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d29204af9bd3fcca7159aff28f168dec289d7e7;p=dealii-svn.git Remove some messing with version numbers that does not seem to work any more with newer autoconfs. git-svn-id: https://svn.dealii.org/trunk@6381 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure.in b/deal.II/configure.in index 4ab83ce6a7..1ccd67dde6 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -23,12 +23,11 @@ dnl clearing the cache define([AC_CACHE_LOAD], )dnl define([AC_CACHE_SAVE], )dnl -dnl Version numbers +AC_INIT([deal.II], [], [dealii@dealii.org]) -DEAL_II_VERSION="`cat Version`" AC_REVISION($Revision$) AC_PREREQ(2.50) -AC_INIT(deal.II, $DEAL_II_VERSION, dealii@dealii.org) + dnl Where the output config file is located AC_CONFIG_HEADER(base/include/base/config.h) @@ -47,6 +46,9 @@ dnl Set the path to the deal.II libraries to `pwd` DEAL2_DIR=`pwd` AC_SUBST(DEAL2_DIR) +dnl Version numbers +DEAL_II_VERSION="`cat Version`" + dnl Set major and minor version numbers of the deal.II library, dnl both as preprocessor variables and in Makefiles DEAL_II_MAJOR=`cat Version | perl -pi -e 's/^(\d+)\..*/$1/;'`