Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 May 2006 03:53:18 GMT
From:      Yuri Pankov <yuri.pankov@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/96967: devel/subversion fails configure with apache-2.0.58
Message-ID:  <200605080353.k483rIjm045784@www.freebsd.org>
Resent-Message-ID: <200605080400.k4840a92017355@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         96967
>Category:       ports
>Synopsis:       devel/subversion fails configure with apache-2.0.58
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 08 04:00:35 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Yuri Pankov
>Release:        6.1
>Organization:
>Environment:
FreeBSD klamath.localnet 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May  7 03:19:18 MSD 2006     root@klamath.localnet:/usr/obj/data/src/sys/KLAMATH  i386
>Description:
After www/apache20 update version reported by apr-config and apu-config has changed to 0.9.12. While building devel/subversion using WITH_MOD_DAV_SVN knob, www/apache20 gets installed. While running configure, devel/subversion configure script checks for apr and apu versions with following regex 0\.9\.[5-9], which can't match 0.9.12, so it fails.
>How-To-Repeat:
update ports
cd /usr/ports/devel/subversion/
make WITH_MOD_DAV_SVN=yes
>Fix:
not very smart hack (patch to files/patch-configure):

--- patch-configure.orig        Mon May  8 07:41:52 2006
+++ patch-configure     Mon May  8 07:43:25 2006
@@ -1,5 +1,17 @@
 --- configure.orig     Sat Nov  5 16:13:58 2005
 +++ configure  Sat Nov  5 16:14:12 2005
+@@ -2933,9 +2933,9 @@
+
+
+
+-APR_VER_REGEX="0\.9\.[5-9]"
++APR_VER_REGEX="0\.9\."
+ APR_VER_REGEX_TOO="1\."
+-APU_VER_REGEX="0\.9\.[5-9]"
++APU_VER_REGEX="0\.9\."
+ APU_VER_REGEX_TOO="1\."
+
+
 @@ -19933,7 +19933,7 @@
          if test "$NEON_VERSION" = "$svn_allowed_neon" -o $svn_allowed_neon = "any"; then
              svn_allowed_neon_on_system="yes"

>Release-Note:
>Audit-Trail:
>Unformatted:



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