Update of /cvsroot/wxlua/wxLua/build/autoconf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3425/build/autoconf
Modified Files:
configure.ac wxpresets.m4
Log Message:
fixed versioning
Index: wxpresets.m4
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/autoconf/wxpresets.m4,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** wxpresets.m4 27 Jan 2006 21:57:06 -0000 1.4
--- wxpresets.m4 29 Jan 2006 15:45:39 -0000 1.5
***************
*** 586,590 ****
fi
! dnl Synch our WX_DEBUG,WX_UNICODE,WX_SHARED variables with wx ones
AM_WXPRESETS_CHECK
--- 586,597 ----
fi
! dnl save the full wxWidgets version in WX_VERSION_FULL
! dnl (to be compatible with win32 bakefiles, AM_WXPRESETS_CHECK overwrites
! dnl WX_VERSION with only the major and minor digits of wx-config --version
! dnl without any dot).
! WX_VERSION_FULL="$WX_VERSION"
! AC_SUBST(WX_VERSION_FULL)
!
! dnl Synch our WX_DEBUG,WX_UNICODE,WX_SHARED,WX_VERSION,etc variables with wx ones
AM_WXPRESETS_CHECK
Index: configure.ac
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/autoconf/configure.ac,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** configure.ac 28 Jan 2006 21:01:07 -0000 1.6
--- configure.ac 29 Jan 2006 15:45:39 -0000 1.7
***************
*** 5,9 ****
! AC_INIT([wxLua], [1.0], [fr...@us...])
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT
--- 5,14 ----
! # WXLUA VERSION
! # =============
! #
! # The second argument of AC_INIT must be the same value of the
! # WXLUA_RELEASE variable in build/bakefiles/wxluabase.bkl !!
! AC_INIT([wxLua], [0], [fr...@us...])
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT
***************
*** 102,105 ****
--- 107,113 ----
AC_SUBST([WXLUA_LDFLAGS])
+ # now that we know the wxWidgets' version, we can update the PACKAGE_VERSION var
+ PACKAGE_VERSION="$WX_VERSION_FULL.$PACKAGE_VERSION"
+
|