You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mt...@apache.org on 2009/02/23 17:29:51 UTC

svn commit: r747069 - /apr/apr/trunk/configure.in

Author: mturk
Date: Mon Feb 23 16:29:49 2009
New Revision: 747069

URL: http://svn.apache.org/viewvc?rev=747069&view=rev
Log:
Remove --disable-version because of two -1

Modified:
    apr/apr/trunk/configure.in

Modified: apr/apr/trunk/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/configure.in?rev=747069&r1=747068&r2=747069&view=diff
==============================================================================
--- apr/apr/trunk/configure.in (original)
+++ apr/apr/trunk/configure.in Mon Feb 23 16:29:49 2009
@@ -201,19 +201,12 @@
   [ installbuilddir=$withval ], [ installbuilddir="${datadir}/build-${APR_MAJOR_VERSION}" ] )
 AC_SUBST(installbuilddir)
 
-AC_ARG_ENABLE(version,[  --disable-version           Disable library version info],
-[enable_version_info=$enableval], [enable_version_info=yes])
-
 AC_ARG_WITH(libtool, [  --without-libtool       avoid using libtool to link the library],
   [ use_libtool=$withval ], [ use_libtool="yes" ] )
 
 if test "x$use_libtool" = "xyes"; then
       lt_compile='$(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE) -o $@ -c $< && touch $@'
-      if test "x$enable_version_info" = "xyes"; then
-          LT_VERSION="-version-info `$get_version libtool $version_hdr APR`"
-      else
-          LT_VERSION="-avoid-version"
-      fi
+      LT_VERSION="-version-info `$get_version libtool $version_hdr APR`"
       link="\$(LIBTOOL) \$(LTFLAGS) --mode=link \$(LT_LDFLAGS) \$(COMPILE) \$(LT_VERSION) \$(ALL_LDFLAGS) -o \$@"
       so_ext='lo'
       lib_target='-rpath $(libdir) $(OBJECTS)'