From e491cf8ad72d6752af8dac345d3bbc491e21a13a Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Tue, 28 Jun 2005 16:37:40 +0000 Subject: 0.1.6 * Function name is changed to conform LibRCC naming conventions * AutoConf Improvements * Release Script * Other minor changes --- configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 04ccc7c..1ad8cd6 100644 --- a/configure.in +++ b/configure.in @@ -2,9 +2,9 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/librcd.c) PACKAGE=librcd -LIBRCD_VERSION_MAJOR=0 -LIBRCD_VERSION_MINOR=1 -LIBRCD_VERSION_SUBMINOR=5 +LIBRCD_VERSION_MAJOR=`cat VERSION | sed -e s/CVS// | cut -d . -f 1 | sed -e s/^$/0/` +LIBRCD_VERSION_MINOR=`cat VERSION | sed -e s/CVS// | cut -d . -f 2 | sed -e s/^$/0/` +LIBRCD_VERSION_SUBMINOR=`cat VERSION | sed -e s/CVS// | cut -d . -f 3 | sed -e s/^$/0/` LIBRCD_VERSION=$LIBRCD_VERSION_MAJOR.$LIBRCD_VERSION_MINOR.$LIBRCD_VERSION_SUBMINOR VERSION=$LIBRCD_VERSION LIBRCD_VERSION_INFO=`echo $LIBRCD_VERSION | awk -F. '{ printf "%d:%d:%d", $1+$2, $3, $2 }'` @@ -36,4 +36,4 @@ AC_C_CONST dnl Checks for library functions. -AC_OUTPUT(src/Makefile Makefile librcd.spec) +AC_OUTPUT(src/Makefile examples/Makefile statgen/Makefile Makefile librcd.spec) -- cgit v1.2.3