[Commit] libic ChangeLog,1.4,1.5 configure.in,1.4,1.5

Carl Worth commit@keithp.com
Fri, 25 Apr 2003 13:18:15 -0700


Committed by: cworth

Update of /local/src/CVS/libic
In directory home.keithp.com:/tmp/cvs-serv17625

Modified Files:
	ChangeLog configure.in 
Log Message:
Fixed to not reference XFixed. Fixed libtool versioning

Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/libic/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ChangeLog	17 Apr 2003 15:48:22 -0000	1.4
+++ ChangeLog	25 Apr 2003 20:18:13 -0000	1.5
@@ -1,3 +1,10 @@
+2003-04-25  Carl Worth  <cworth@east.isi.edu>
+
+	* src/ic.h (IC_REVISION): Added #defines for version.
+	Don't reference undefined XFixed datatype.
+
+	* configure.in: Fixed libtool versioning.
+
 2003-04-17  Carl Worth  <cworth@isi.edu>
 
 	* src/icint.h: Removed reliance on some server include files,

Index: configure.in
===================================================================
RCS file: /local/src/CVS/libic/configure.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- configure.in	23 Apr 2003 14:30:52 -0000	1.4
+++ configure.in	25 Apr 2003 20:18:13 -0000	1.5
@@ -4,16 +4,25 @@
 
 dnl ===========================================================================
 
-LIBIC_MAJOR_VERSION=0
-LIBIC_MINOR_VERSION=1
-LIBIC_MICRO_VERSION=0
-AC_SUBST(LIBIC_MAJOR_VERSION)
-AC_SUBST(LIBIC_MINOR_VERSION)
-AC_SUBST(LIBIC_MICRO_VERSION)
+# Package version number, (as distinct from shared library version)
+# This must be manually synchronized with the version in src/ic.h
+LIBIC_VERSION=0.1.0
 
-LIBIC_VERSION=$LIBIC_MAJOR_VERSION.$LIBIC_MINOR_VERSION.$LIBIC_MICRO_VERSION
+# libtool shared library version
 
-VERSION_INFO=`expr $LIBIC_MAJOR_VERSION + $LIBIC_MINOR_VERSION`:$LIBIC_MICRO_VERSION:$LIBIC_MINOR_VERSION
+# Increment if the interface has additions, changes, removals.
+LT_CURRENT=1
+
+# Increment any time the source changes; set to
+# 0 if you increment CURRENT
+LT_REVISION=0
+
+# Increment if any interfaces have been added; set to 0
+# if any interfaces have been removed. removal has
+# precedence over adding, so set to 0 if both happened.
+LT_AGE=0
+
+VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
 AC_SUBST(VERSION_INFO)
 
 dnl ===========================================================================