Author: joes
Date: Fri Feb 24 12:47:03 2006
New Revision: 380815
URL: http://svn.apache.org/viewcvs?rev=380815&view=rev
Log:
fix library version number
Modified:
httpd/apreq/branches/apr-build-system/Makefile.in
httpd/apreq/branches/apr-build-system/configure.in
Modified: httpd/apreq/branches/apr-build-system/Makefile.in
URL:
http://svn.apache.org/viewcvs/httpd/apreq/branches/apr-build-system/Makefile.in?rev=380815&r1=380814&r2=380815&view=diff
==============================================================================
--- httpd/apreq/branches/apr-build-system/Makefile.in (original)
+++ httpd/apreq/branches/apr-build-system/Makefile.in Fri Feb 24 12:47:03 2006
@@ -5,7 +5,10 @@
# gets substituted into some targets
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
+APREQ_LTVERSION=`expr $(APREQ_MAJOR_VERSION) + $(APREQ_MINOR_VERSION) +
$(APR_MAJOR_VERSION)`:$(APREQ_PATCH_VERSION):$(APREQ_MINOR_VERSION)
srcdir = @srcdir@
VPATH = @srcdir@
@@ -27,6 +30,8 @@
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
@INCLUDE_OUTPUTS@
+
+LINK = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE)
-version-info $(APREQ_LTVERSION) $(ALL_LDFLAGS) -o $@
CLEAN_SUBDIRS = test @APR_ICONV_DIR@
Modified: httpd/apreq/branches/apr-build-system/configure.in
URL:
http://svn.apache.org/viewcvs/httpd/apreq/branches/apr-build-system/configure.in?rev=380815&r1=380814&r2=380815&view=diff
==============================================================================
--- httpd/apreq/branches/apr-build-system/configure.in (original)
+++ httpd/apreq/branches/apr-build-system/configure.in Fri Feb 24 12:47:03 2006
@@ -54,10 +54,14 @@
get_version="$abs_srcdir/build/get-version.sh"
version_hdr="$abs_srcdir/include/apreq_version.h"
APREQ_MAJOR_VERSION="`$get_version major $version_hdr APREQ`"
+APREQ_MINOR_VERSION="`$get_version minor $version_hdr APREQ`"
+APREQ_PATCH_VERSION="`$get_version patch $version_hdr APREQ`"
APREQ_DOTTED_VERSION="`$get_version all $version_hdr APREQ`"
AC_SUBST(APREQ_DOTTED_VERSION)
AC_SUBST(APREQ_MAJOR_VERSION)
+AC_SUBST(APREQ_MINOR_VERSION)
+AC_SUBST(APREQ_PATCH_VERSION)
echo "APREQ Version: ${APREQ_DOTTED_VERSION}"