From a37327861c3b2dc46ae749840f74e88456551ad5 Mon Sep 17 00:00:00 2001 From: Clark Cooper Date: Tue, 26 Sep 2000 13:52:33 +0000 Subject: [PATCH] Change version number to accord with beta release. --- expat/configure.in | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/expat/configure.in b/expat/configure.in index 1bfa672f..6d403740 100644 --- a/expat/configure.in +++ b/expat/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 -- 2.40.0