diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 7 |
2 files changed, 6 insertions, 5 deletions
@@ -1,5 +1,9 @@ 2005-11-22 Christophe Fergeau <teuf@gnome.org> + * configure.ac: fix .so versioning + +2005-11-22 Christophe Fergeau <teuf@gnome.org> + * src/glib-compat.h: include stdio.h in the glib 2.4 compat code 2005-11-21 Christophe Fergeau <teuf@gnome.org> diff --git a/configure.ac b/configure.ac index f145533..4139f0d 100644 --- a/configure.ac +++ b/configure.ac @@ -12,8 +12,8 @@ AM_CONFIG_HEADER(config.h) # set LIBGPOD_BINARY_AGE and LIBGPOD_INTERFACE_AGE to 0. # LIBGPOD_MAJOR_VERSION=0 -LIBGPOD_MINOR_VERSION=2 -LIBGPOD_MICRO_VERSION=0 +LIBGPOD_MINOR_VERSION=1 +LIBGPOD_MICRO_VERSION=99 LIBGPOD_INTERFACE_AGE=0 # If you need a modifier for the version number. # Normally empty, but can be used to make "fixup" releases. @@ -23,9 +23,6 @@ dnl libtool versioning from libgnome LIBGPOD_CURRENT=`expr 100 '*' $LIBGPOD_MINOR_VERSION + $LIBGPOD_MICRO_VERSION - $LIBGPOD_INTERFACE_AGE` LIBGPOD_BINARY_AGE=`expr 100 '*' $LIBGPOD_MINOR_VERSION + $LIBGPOD_MICRO_VERSION` - -LIBGPOD_BINARY_AGE=0 - LIBGPOD_REVISION=$LIBGPOD_INTERFACE_AGE LIBGPOD_AGE=`expr $LIBGPOD_BINARY_AGE - $LIBGPOD_INTERFACE_AGE` LIBGPOD_VERSION=$LIBGPOD_MAJOR_VERSION.$LIBGPOD_MINOR_VERSION.$LIBGPOD_MICRO_VERSION$LIBGPOD_EXTRAVERSION |