You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/03 17:43:12 UTC

svn commit: r1499447 - /subversion/trunk/configure.ac

Author: danielsh
Date: Wed Jul  3 15:43:12 2013
New Revision: 1499447

URL: http://svn.apache.org/r1499447
Log:
* configure.ac: Nuke the warning at the end about not building with BDB,
    because the BDB backend is deprecated.
    The warning had a bug: it referred to $with_berkeley_db which is never set.

Modified:
    subversion/trunk/configure.ac

Modified: subversion/trunk/configure.ac
URL: http://svn.apache.org/viewvc/subversion/trunk/configure.ac?rev=1499447&r1=1499446&r2=1499447&view=diff
==============================================================================
--- subversion/trunk/configure.ac (original)
+++ subversion/trunk/configure.ac Wed Jul  3 15:43:12 2013
@@ -1511,19 +1511,3 @@ AC_OUTPUT
 dnl Configure is long - users tend to miss warnings printed during it.
 dnl Hence, print a warnings about what we did and didn't configure at the 
 dnl end, where people will actually see them.
-
-if test "$svn_lib_berkeley_db" = "no" && test "$with_berkeley_db" != "no"; then
-  db_version="$SVN_FS_WANT_DB_MAJOR.$SVN_FS_WANT_DB_MINOR.$SVN_FS_WANT_DB_PATCH"
-  AC_MSG_WARN([we have configured without BDB filesystem support
-
-
-You don't seem to have Berkeley DB version $db_version or $db_alt_version
-installed and linked to APR-UTIL.  We have created a Makefile which will build
-Subversion without support for the Berkeley DB back-end.  You can find the
-latest version of Berkeley DB here:
-
-  http://www.oracle.com/technetwork/products/berkeleydb/downloads/index.html
-
-or explicitly specify --without-berkeley-db to silence this warning.
-])
-fi