[Expat-checkins] CVS: expat configure.in,1.3,1.4
Clark Cooper
coopercc@users.sourceforge.net
Tue, 26 Sep 2000 06:52:37 -0700
Update of /cvsroot/expat/expat
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28879
Modified Files:
configure.in
Log Message:
Change version number to accord with beta release.
Index: configure.in
===================================================================
RCS file: /cvsroot/expat/expat/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** configure.in 2000/09/24 03:43:36 1.3
--- configure.in 2000/09/26 13:52:33 1.4
***************
*** 14,22 ****
AC_CONFIG_AUX_DIR(conftools)
! EXPAT_MAJOR_VERSION=2
! EXPAT_MINOR_VERSION=0
! EXPAT_VERSION=$EXPAT_MAJOR_VERSION.$EXPAT_MINOR_VERSION
VERSION=$EXPAT_VERSION
PACKAGE=expat
LIBCURRENT=0
--- 14,42 ----
AC_CONFIG_AUX_DIR(conftools)
! 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