[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Help, subversion 1.6.0 configure error with Berkeley DB

From: Cyrille <cyrille.tigris.org_at_giquello.com>
Date: Thu, 9 Apr 2009 07:34:59 -0700 (PDT)

Ok, I've found the right syntax :

./configure --prefix=/usr/local/subversion --with-apxs=/usr/local/apache2/bin/apxs --with-berkeley-db
=db.h:/usr/local/BerkeleyDB.4.7/include:/usr/local/BerkeleyDB.4.7/lib:db

BUT I add to made a change in the script configure: Removing the -o option for $EGREP

changed line :
<code>
...
if test -n "`echo "$withval" | $EGREP -o ":.*:.*:"`"; then
...
</code>
to :
<code>
...
if test -n "`echo "$withval" | $EGREP ":.*:.*:"`"; then
...
</code>

because the /bin/grep command on my system does not know the -o option.

cyrille

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1614676

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-04-09 22:20:24 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.