/rusxmms/librcd

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcd

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Suren A. Chilingaryan
  • Date: 2005-06-28 16:37:40 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcd--main--0.1--patch-1
0.1.6
* Function name is changed to conform LibRCC naming conventions
* AutoConf Improvements
* Release Script
* Other minor changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
AC_INIT(src/librcd.c)
3
3
 
4
4
PACKAGE=librcd
5
 
LIBRCD_VERSION_MAJOR=0
6
 
LIBRCD_VERSION_MINOR=1
7
 
LIBRCD_VERSION_SUBMINOR=5
 
5
LIBRCD_VERSION_MAJOR=`cat VERSION | sed -e s/CVS// | cut -d . -f 1 | sed -e s/^$/0/`
 
6
LIBRCD_VERSION_MINOR=`cat VERSION | sed -e s/CVS// | cut -d . -f 2 | sed -e s/^$/0/`
 
7
LIBRCD_VERSION_SUBMINOR=`cat VERSION | sed -e s/CVS// | cut -d . -f 3 | sed -e s/^$/0/`
8
8
LIBRCD_VERSION=$LIBRCD_VERSION_MAJOR.$LIBRCD_VERSION_MINOR.$LIBRCD_VERSION_SUBMINOR
9
9
VERSION=$LIBRCD_VERSION
10
10
LIBRCD_VERSION_INFO=`echo $LIBRCD_VERSION | awk -F. '{ printf "%d:%d:%d", $1+$2, $3, $2 }'`
36
36
 
37
37
dnl Checks for library functions.
38
38
 
39
 
AC_OUTPUT(src/Makefile Makefile librcd.spec)
 
39
AC_OUTPUT(src/Makefile examples/Makefile statgen/Makefile Makefile librcd.spec)