public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/subversion/files/1.5.0: disable-unneeded-linking.patch 70svn-gentoo.el 80subversion-extras
@ 2008-04-30 21:16 Benedikt Boehm (hollow)
  0 siblings, 0 replies; 2+ messages in thread
From: Benedikt Boehm (hollow) @ 2008-04-30 21:16 UTC (permalink / raw
  To: gentoo-commits

hollow      08/04/30 21:16:44

  Added:                disable-unneeded-linking.patch 70svn-gentoo.el
                        80subversion-extras
  Log:
  version bump wrt #219395
  (Portage version: 2.1.5_rc6)

Revision  Changes    Path
1.1                  dev-util/subversion/files/1.5.0/disable-unneeded-linking.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/1.5.0/disable-unneeded-linking.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/1.5.0/disable-unneeded-linking.patch?rev=1.1&content-type=text/plain

Index: disable-unneeded-linking.patch
===================================================================
--- configure.ac
+++ configure.ac
@@ -234,6 +234,8 @@
 AC_DEFINE_UNQUOTED(SVN_FS_WANT_DB_PATCH, $SVN_FS_WANT_DB_PATCH,
                    [The desired patch version for the Berkeley DB])
 
+AC_SUBST(SVN_DB_LIBS)
+
 SVN_LIB_SASL
 
 if test "$svn_lib_sasl" = "yes"; then
--- Makefile.in
+++ Makefile.in
@@ -40,9 +40,10 @@
 NEON_LIBS = @NEON_LIBS@
 SVN_APR_LIBS = @SVN_APR_LIBS@
 SVN_APRUTIL_LIBS = @SVN_APRUTIL_LIBS@
-SVN_DB_LIBS =
-SVN_SERF_LIBS = @SVN_SERF_LIBS@
+SVN_DB_LIBS = @SVN_DB_LIBS@
 SVN_SASL_LIBS = @SVN_SASL_LIBS@
+SVN_SERF_LIBS = @SVN_SERF_LIBS@
+SVN_XML_LIBS = -lexpat
 SVN_ZLIB_LIBS = @SVN_ZLIB_LIBS@
 
 LIBS = @LIBS@
--- build/ac-macros/aprutil.m4
+++ build/ac-macros/aprutil.m4
@@ -72,16 +72,14 @@
     AC_MSG_ERROR([apu-config --includes failed])
   fi
 
-  dnl When APR stores the dependent libs in the .la file, we don't need
-  dnl --libs.
-  SVN_APRUTIL_LIBS="`$apu_config --link-libtool --libs`"
+  SVN_APRUTIL_LIBS="`$apu_config --link-libtool`"
   if test $? -ne 0; then
-    AC_MSG_ERROR([apu-config --link-libtool --libs failed])
+    AC_MSG_ERROR([apu-config --link-libtool failed])
   fi
 
-  SVN_APRUTIL_EXPORT_LIBS="`$apu_config --link-ld --libs`"
+  SVN_APRUTIL_EXPORT_LIBS="`$apu_config --link-ld`"
   if test $? -ne 0; then
-    AC_MSG_ERROR([apu-config --link-ld --libs failed])
+    AC_MSG_ERROR([apu-config --link-ld failed])
   fi
 
   AC_SUBST(SVN_APRUTIL_INCLUDES)
--- build/ac-macros/apr.m4
+++ build/ac-macros/apr.m4
@@ -74,16 +74,14 @@
     AC_MSG_ERROR([apr-config --prefix failed])
   fi
 
-  dnl When APR stores the dependent libs in the .la file, we don't need 
-  dnl --libs.
-  SVN_APR_LIBS="`$apr_config --link-libtool --libs`"
+  SVN_APR_LIBS="`$apr_config --link-libtool`"
   if test $? -ne 0; then
-    AC_MSG_ERROR([apr-config --link-libtool --libs failed])
+    AC_MSG_ERROR([apr-config --link-libtool failed])
   fi
 
-  SVN_APR_EXPORT_LIBS="`$apr_config --link-ld --libs`"
+  SVN_APR_EXPORT_LIBS="`$apr_config --link-ld`"
   if test $? -ne 0; then
-    AC_MSG_ERROR([apr-config --link-ld --libs failed])
+    AC_MSG_ERROR([apr-config --link-ld failed])
   fi
 
   SVN_APR_SHLIB_PATH_VAR="`$apr_config --shlib-path-var`"
--- build/ac-macros/berkeley-db.m4
+++ build/ac-macros/berkeley-db.m4
@@ -218,5 +218,6 @@
 
   CPPFLAGS="$svn_lib_berkeley_db_try_save_cppflags"
   LIBS="$svn_lib_berkeley_db_try_save_libs"
+  SVN_DB_LIBS="$svn_apu_bdb_lib"
   ]
 )



1.1                  dev-util/subversion/files/1.5.0/70svn-gentoo.el

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/1.5.0/70svn-gentoo.el?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/1.5.0/70svn-gentoo.el?rev=1.1&content-type=text/plain

Index: 70svn-gentoo.el
===================================================================
;;; svn site-lisp configuration

(add-to-list 'load-path "@SITELISP@")
(and (< emacs-major-version 22)
     (add-to-list 'load-path "@SITELISP@/compat"))
(add-to-list 'vc-handled-backends 'SVN)

(defalias 'svn-examine 'svn-status)
(autoload 'svn-status "dsvn" "Run `svn status'." t)
(autoload 'svn-update "dsvn" "Run `svn update'." t)
(autoload 'svn-status "psvn"
  "Examine the status of Subversion working copy in directory DIR." t)



1.1                  dev-util/subversion/files/1.5.0/80subversion-extras

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/1.5.0/80subversion-extras?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/1.5.0/80subversion-extras?rev=1.1&content-type=text/plain

Index: 80subversion-extras
===================================================================
ROOTPATH=/usr/lib/subversion/bin
PATH=/usr/lib/subversion/bin



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/subversion/files/1.5.0: disable-unneeded-linking.patch 70svn-gentoo.el 80subversion-extras
@ 2009-10-24 15:02 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 2+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-10-24 15:02 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/10/24 15:02:22

  Removed:              disable-unneeded-linking.patch 70svn-gentoo.el
                        80subversion-extras
  Log:
  Version bump.
  (Portage version: 14724-svn/cvs/Linux x86_64)



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-10-24 15:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-24 15:02 [gentoo-commits] gentoo-x86 commit in dev-util/subversion/files/1.5.0: disable-unneeded-linking.patch 70svn-gentoo.el 80subversion-extras Arfrever Frehtes Taifersar Arahesis (arfrever)
  -- strict thread matches above, loose matches on Subject: below --
2008-04-30 21:16 Benedikt Boehm (hollow)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox