[Commit] Xr BUGS,1.1,1.2 ChangeLog,1.18,1.19 configure.in,1.3,1.4

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


Committed by: cworth

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

Modified Files:
	BUGS ChangeLog configure.in 
Log Message:
Fixed libtool versioning

Index: BUGS
===================================================================
RCS file: /local/src/CVS/Xr/BUGS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- BUGS	17 Apr 2003 20:24:29 -0000	1.1
+++ BUGS	25 Apr 2003 20:34:00 -0000	1.2
@@ -1 +1,2 @@
 SEGV if XrSetRGBColor is called before XrSetTargetDrawable
+SEGV if XrFill is called before XrSetRGBColor

Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/Xr/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ChangeLog	17 Apr 2003 20:24:29 -0000	1.18
+++ ChangeLog	25 Apr 2003 20:34:00 -0000	1.19
@@ -1,3 +1,7 @@
+2003-04-25  Carl Worth  <cworth@east.isi.edu>
+
+	* configure.in: Fixed libtool versioning
+
 2003-04-17  Carl Worth  <cworth@isi.edu>
 
 	* Switched from imake to autotools.

Index: configure.in
===================================================================
RCS file: /local/src/CVS/Xr/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- configure.in	23 Apr 2003 14:23:46 -0000	1.3
+++ configure.in	25 Apr 2003 20:34:00 -0000	1.4
@@ -2,16 +2,24 @@
 
 dnl ===========================================================================
 
-XR_MAJOR_VERSION=0
-XR_MINOR_VERSION=1
-XR_MICRO_VERSION=0
-AC_SUBST(XR_MAJOR_VERSION)
-AC_SUBST(XR_MINOR_VERSION)
-AC_SUBST(XR_MICRO_VERSION)
+# Package version number, (as distinct from shared library version)
+XR_VERSION=0.1.0
 
-XR_VERSION=$XR_MAJOR_VERSION.$XR_MINOR_VERSION.$XR_MICRO_VERSION
+# libtool shared library version
 
-VERSION_INFO=`expr $XR_MAJOR_VERSION + $XR_MINOR_VERSION`:$XR_MICRO_VERSION:$XR_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 ===========================================================================