Version leap to 0.1.7, requiring libburn-0.4.8 now

This commit is contained in:
2008-05-18 08:48:07 +00:00
parent de589419da
commit a2c7c523aa
11 changed files with 365 additions and 110 deletions

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.1.5], [http://libburnia-project.org])
AC_INIT([libisoburn], [0.1.7], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -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=5
ISOBURN_MICRO_VERSION=7
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 A80512
dnl ### This was the release version 0.1.4 = libisoburn.so.1.3.0
dnl This is the development version after stable release libisoburn.so.1.3.0
dnl LT_CURRENT++, LT_AGE++ have happened happened meanwhile.
dnl ts A80517
dnl ### This is the release version 0.1.6 = libisoburn.so.1.5.0
dnl This is the development version after above stable release
dnl LT_CURRENT++, LT_AGE++ have not happened happened yet.
dnl
dnl SONAME = 5 - 4 = 1 . Library name = libburn.so.1.4.0
dnl SONAME = 6 - 5 = 1 . Library name = libburn.so.1.5.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=5
LT_AGE=4
LT_CURRENT=6
LT_AGE=5
LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
@ -99,7 +99,7 @@ AC_CHECK_HEADER(libburn/libburn.h)
AC_CHECK_HEADER(libisofs/libisofs.h)
dnl Check for proper library versions
LIBBURN_REQUIRED=0.4.7
LIBBURN_REQUIRED=0.4.8
LIBISOFS_REQUIRED=0.6.4
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)