Version leap to 0.6.15 and

new API call iso_write_opts_get_data_start()
This commit is contained in:
2009-02-28 23:22:31 +01:00
parent 4daf626493
commit e1460aa9a6
5 changed files with 58 additions and 8 deletions

View File

@ -1,4 +1,4 @@
AC_INIT([libisofs], [0.6.14], [http://libburnia-project.org])
AC_INIT([libisofs], [0.6.15], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -44,7 +44,7 @@ dnl If LIBISOFS_*_VERSION changes, be sure to change AC_INIT above to match.
dnl
LIBISOFS_MAJOR_VERSION=0
LIBISOFS_MINOR_VERSION=6
LIBISOFS_MICRO_VERSION=14
LIBISOFS_MICRO_VERSION=15
LIBISOFS_VERSION=$LIBISOFS_MAJOR_VERSION.$LIBISOFS_MINOR_VERSION.$LIBISOFS_MICRO_VERSION
AC_SUBST(LIBISOFS_MAJOR_VERSION)
@ -54,10 +54,11 @@ AC_SUBST(LIBISOFS_VERSION)
dnl Libtool versioning
LT_RELEASE=$LIBISOFS_MAJOR_VERSION.$LIBISOFS_MINOR_VERSION
# SONAME = 16 - 10 = 6 . Library name = libisofs.6.10.0
LT_CURRENT=16
# 2009.02.28: development jump has already happened
# SONAME = 17 - 11 = 6 . Library name = libisofs.6.11.0
LT_CURRENT=17
LT_REVISION=0
LT_AGE=10
LT_AGE=11
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
AC_SUBST(LT_RELEASE)