Add a forgotten trailing ` in the GLIB_BINARY_AGE expression. Also fixup
authorAnders Carlsson <andersca@gnu.org>
Wed, 3 Jul 2002 08:14:42 +0000 (08:14 +0000)
committerAnders Carlsson <andersca@src.gnome.org>
Wed, 3 Jul 2002 08:14:42 +0000 (08:14 +0000)
2002-07-03  Anders Carlsson  <andersca@gnu.org>

* configure.in: Add a forgotten trailing ` in the
GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index 2d13729..cdd5e0c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 2d13729..cdd5e0c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 2d13729..cdd5e0c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 2d13729..cdd5e0c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 2d13729..cdd5e0c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 2d13729..cdd5e0c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 2d13729..cdd5e0c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-03  Anders Carlsson  <andersca@gnu.org>
+
+       * configure.in: Add a forgotten trailing ` in the 
+       GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
+
 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Set binary age to 0 to make it compile.
index 5706976..a528c57 100644 (file)
@@ -35,7 +35,7 @@ GLIB_MAJOR_VERSION=2
 GLIB_MINOR_VERSION=1
 GLIB_MICRO_VERSION=0
 GLIB_INTERFACE_AGE=0
-GLIB_BINARY_AGE=0
+GLIB_BINARY_AGE=`expr 100 '*' $GLIB_MINOR_VERSION + $GLIB_MICRO_VERSION`
 GLIB_VERSION=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION.$GLIB_MICRO_VERSION
 ])dnl
 
@@ -48,7 +48,7 @@ AC_SUBST(GLIB_BINARY_AGE)
 
 # libtool versioning
 LT_RELEASE=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION
-LT_CURRENT=`expr $GLIB_MICRO_VERSION - $GLIB_INTERFACE_AGE`
+LT_CURRENT=`expr 100 '*' $GLIB_MINOR_VERSION + $GLIB_MICRO_VERSION - $GLIB_INTERFACE_AGE`
 LT_REVISION=$GLIB_INTERFACE_AGE
 LT_AGE=`expr $GLIB_BINARY_AGE - $GLIB_INTERFACE_AGE`
 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`