Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Mar 2006 10:28:41 GMT
From:      Hiroto Kagotani <hiroto.kagotani@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/94442: [PATCH] www/mod_ruby: build fails with apache22
Message-ID:  <200603141028.k2EASfuN058031@www.freebsd.org>
Resent-Message-ID: <200603141030.k2EAUEMw053152@freefall.freebsd.org>

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

>Number:         94442
>Category:       ports
>Synopsis:       [PATCH] www/mod_ruby: build fails with apache22
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Mar 14 10:30:13 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Hiroto Kagotani
>Release:        6.1-BETA3
>Organization:
Okayama Univ.
>Environment:
FreeBSD myhost.mydomain 6.1-BETA3 FreeBSD 6.1-BETA3 #10: Wed Mar  8 02:07:59 JST 2006     root@myhost.mydomain:/usr/obj/usr/src/sys/MYHOST  i386
>Description:
make in www/mod_ruby stops if I already have installed www/apache22.

# make
..
===>  Building for mod_ruby-1.2.5
cc -O2 -fno-strict-aliasing -pipe   -fPIC -Wall  -O2 -fno-strict-aliasing -pipe    -I. -I/usr/local/lib/ruby/1.8/i386-freebsd6 -I/usr/local/include/apache22    -c mod_ruby.c
In file included from /usr/local/include/apache22/httpd.h:43,
                 from mod_ruby.h:49,
                 from mod_ruby.c:33:
/usr/local/include/apache22/ap_config.h:25:17: apr.h: No such file or directory
..
#

This is caused by www/mod_ruby's assumption that apr headers are
thestored in apache's include directory, though they are actually
stored in /usr/local/include/apr-1 directory for apache21 and 22.

>How-To-Repeat:

>Fix:
--- Makefile.orig       Mon Feb 20 17:53:14 2006
+++ Makefile    Tue Mar 14 09:19:26 2006
@@ -35,6 +35,10 @@

 .include <bsd.port.pre.mk>

+.if exists(${LOCALBASE}/bin/apr-1-config)
+CONFIGURE_ARGS+=--with-apr-includes="`${LOCALBASE}/bin/apr-1-config --includedir`"
+.endif
+
 do-configure:
        @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} configure.rb ${CONFIGURE_ARGS}
 .if !defined(WITHOUT_PTHREADS)

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



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