Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Aug 2015 12:13:00 +0000 (UTC)
From:      "Lev A. Serebryakov" <lev@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r394857 - head/devel/subversion
Message-ID:  <201508201213.t7KCD0Va016777@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lev
Date: Thu Aug 20 12:13:00 2015
New Revision: 394857
URL: https://svnweb.freebsd.org/changeset/ports/394857

Log:
    Fix detection of BDBv6.
  
  PR:		202505
  Submitted by:	emz@norma.perm.ru

Modified:
  head/devel/subversion/Makefile

Modified: head/devel/subversion/Makefile
==============================================================================
--- head/devel/subversion/Makefile	Thu Aug 20 11:53:46 2015	(r394856)
+++ head/devel/subversion/Makefile	Thu Aug 20 12:13:00 2015	(r394857)
@@ -1,6 +1,8 @@
 # Created by: rooneg@electricjellyfish.net
 # $FreeBSD$
 
+PORTREVISION=	1
+
 MAINTAINER=	lev@FreeBSD.org
 COMMENT=	Version control system
 
@@ -121,9 +123,9 @@ pre-everything::
 pre-configure:
 .if ${PORT_OPTIONS:MBDB}
 	@BDB_VERSION=`${APR_APU_DIR}/${APU_CONFIG} --db-version`; \
-	if [ "$${BDB_VERSION}" != "4" -a "$${BDB_VERSION}" != "5" ] ; then \
+	if [ "$${BDB_VERSION}" != "4" -a "$${BDB_VERSION}" != "5" -a "$${BDB_VERSION}" != "6" ] ; then \
 		${ECHO_MSG} "" ; \
-		${ECHO_MSG} 'You should build `'"devel/apr1' with Berkeley DB (4 or 5) support to use subversion with it." ; \
+		${ECHO_MSG} 'You should build `'"devel/apr1' with Berkeley DB (4, 5 or 6) support to use subversion with it." ; \
 		${ECHO_MSG} 'Please rebuild `'"devel/apr1' with option "'`'"${OPT_NAME}' and try again." ; \
 		${ECHO_MSG} "" ; \
 		${ECHO_MSG} "Or you can disable Berkeley DB support. Only 'fs' repository backend will be available." ; \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508201213.t7KCD0Va016777>