Author: stsp
Date: Sat Nov 20 16:11:16 2010
New Revision: 1037252

URL: http://svn.apache.org/viewvc?rev=1037252&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: Downgrade BDB dependency from 4.8.30
   to 4.7.25. Later versions link to the pthreads library unconditionally
   and the BDB configure script provides no way to turn this off.
   Nothing else is compiled with support for pthreads so this causes problems.
   Fixes local ruby bindings test failures for me, which surprisingly was
   the only visible effect of this problem. (I doubt it was the only bad
   thing that was happening.)

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: 
http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1037252&r1=1037251&r2=1037252&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Sat Nov 20 16:11:16 2010
@@ -29,8 +29,8 @@ DISTDIR               = $(PWD)/distfiles
 SRCDIR         = $(PWD)/src
 OBJDIR         = $(PWD)/objdir
 
-BDB_MAJOR_VER  = 4.8
-BDB_VER                = $(BDB_MAJOR_VER).30
+BDB_MAJOR_VER  = 4.7
+BDB_VER                = $(BDB_MAJOR_VER).25
 APR_VER                = 1.4.2
 APR_ICONV_VER  = 1.2.1
 GNU_ICONV_VER  = 1.13.1
@@ -1069,7 +1069,7 @@ svn-check-swig-rb:
                cd $(svn_builddir)/subversion/bindings/swig/ruby/test && \
                        env RUBYLIB=$(RUBYLIB) \
                        LD_LIBRARY_PATH=$(LD_LIBRARY_PATH) \
-                       ruby run-test.rb --verbose=verbose; \
+                       ruby run-test.rb --verbose=normal; \
        fi
        touch $@
 


Reply via email to