summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoopercc <coopercc>2000-09-26 13:52:33 +0000
committercoopercc <coopercc>2000-09-26 13:52:33 +0000
commit2e842af6c4c430d54cbf6e38320cf7ddbb12964f (patch)
tree5c33bb271c10a722d998d87f0e40b1b4a2e83d3d
parent56fdcd4163e730010a24b25cbb458f1e04f13884 (diff)
downloadlibexpat-2e842af6c4c430d54cbf6e38320cf7ddbb12964f.tar.gz
Change version number to accord with beta release.
-rw-r--r--configure.in26
1 files changed, 23 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 1bfa672..6d40374 100644
--- a/configure.in
+++ b/configure.in
@@ -13,12 +13,32 @@ dnl
AC_INIT(Makefile.in)
AC_CONFIG_AUX_DIR(conftools)
-EXPAT_MAJOR_VERSION=2
-EXPAT_MINOR_VERSION=0
-EXPAT_VERSION=$EXPAT_MAJOR_VERSION.$EXPAT_MINOR_VERSION
+dnl
+dnl Follow the GNU/Linux convention of odd number minor version for
+dnl beta/development releases and even number minor version for stable
+dnl releases. Edit is bumped with each release and set to 0 with
+dnl change to major or minor version.
+dnl
+
+EXPAT_MAJOR_VERSION=1
+EXPAT_MINOR_VERSION=99
+EXPAT_EDIT=0
+
+EXPAT_VERSION=$EXPAT_MAJOR_VERSION.$EXPAT_MINOR_VERSION.$EXPAT_EDIT
VERSION=$EXPAT_VERSION
PACKAGE=expat
+dnl
+dnl Increment LIBREVISION if source code has changed at all
+dnl
+dnl If the API has changed, increment LIBCURRENT and set LIBREVISION to 0
+dnl
+dnl If the API changes compatibly (i.e. simply adding a new function
+dnl without changing or removing earlier interfaces), then increment LIBAGE.
+dnl
+dnl If the API changes incompatibly set LIBAGE back to 0
+dnl
+
LIBCURRENT=0
LIBREVISION=0
LIBAGE=0