Version leap to 0.1.9

This commit is contained in:
2008-06-02 15:29:46 +00:00
parent 933510d10e
commit 3f4853b56e
10 changed files with 67 additions and 59 deletions

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.1.7], [http://libburnia-project.org])
AC_INIT([libisoburn], [0.1.9], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -13,7 +13,7 @@ dnl /ISOBURN_.*_VERSION
dnl /LT_.*
dnl /LIB.*_REQUIRED
dnl The API version codes are now defined in libisoburn/libisoburn.h
dnl The API version codes are defined in libisoburn/libisoburn.h
dnl #define isoburn_header_version_*
dnl configure.ac only rules the libtool revision numbering about
dnl LT_CURREN, LT_AGE, LT_REVISION where SONAME becomes LT_CURRENT - LT_AGE
@ -21,7 +21,7 @@ dnl
dnl These three are only copies to provide libtool with unused LT_RELEASE
ISOBURN_MAJOR_VERSION=0
ISOBURN_MINOR_VERSION=1
ISOBURN_MICRO_VERSION=7
ISOBURN_MICRO_VERSION=8
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
AC_SUBST(ISOBURN_MAJOR_VERSION)
@ -33,15 +33,15 @@ dnl Libtool versioning
dnl Generate libisoburn.so.1.x.y
dnl SONAME will become LT_CURRENT - LT_AGE
dnl
dnl ts A80517
dnl ### This is the release version 0.1.6 = libisoburn.so.1.5.0
dnl ts A80602
dnl ### This is the release version 0.1.8 = libisoburn.so.1.7.0
dnl This is the development version after above stable release
dnl LT_CURRENT++, LT_AGE++ have not happened happened yet.
dnl
dnl SONAME = 6 - 5 = 1 . Library name = libburn.so.1.5.0
dnl SONAME = 8 - 7 = 1 . Library name = libburn.so.1.7.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=6
LT_AGE=5
LT_CURRENT=8
LT_AGE=7
LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`