Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Apr 2011 22:12:06 -0400
From:      "Philip M. Gollucci" <pgollucci@p6m7g8.com>
To:        <dev@apr.apache.org>, <apache@FreeBSD.org>
Subject:   Fwd: Re: Update apache22
Message-ID:  <4D9E6EF6.502@p6m7g8.com>

next in thread | raw e-mail | index | archive | help
issue now reported up stream

-------- Original Message --------
Subject: Re: Update apache22
Date: Fri, 01 Apr 2011 13:51:00 +0200
From: Olli Hauer <ohauer@freebsd.org>
Reply-To: ohauer@freebsd.org
To: Ryusuke SUZUKI <ryusuke@freebsd.org>, apache@freebsd.org
CC: ohauer@freebsd.org

On 2011-04-01 06:40, Ryusuke SUZUKI wrote:
> Hello Olli-san,
> 
> Update the apache22 was failed
> (Log file is attached in this mail).
> 
> It seems that /textproc/gsed is needed.
> 
> Regards,
>   Ryusuke
> 
> ---------------------------------------------------------------------------
> --- Makefile.orig	2011-04-01 13:33:25.000000000 +0900
> +++ Makefile	2011-04-01 13:26:12.000000000 +0900
> @@ -18,6 +18,8 @@
>  MAINTAINER?=	apache@FreeBSD.org
>  COMMENT?=	Version 2.2.x of Apache web server with ${WITH_MPM:L} MPM.
> 
> +BUILD_DEPENDS=	gsed:${PORTSDIR}/textproc/gsed
> +
>  LIB_DEPENDS=	expat.6:${PORTSDIR}/textproc/expat2 \
>  		apr-1:${PORTSDIR}/devel/apr1 \
>  		pcre.0:${PORTSDIR}/devel/pcre


Hi Ryusuke-san,

thanks for reporting this issue.

I found the culprit in the apr1 port.

If gsed is installed the time apr1 is build then
you find the following entry in
file: ${LOCALBASE}/share/apr/build-1/libtool

SED="/usr/local/bin/gsed"

As quick workaround set this line to
SED="sed"

and the issue should be solved.

Regards,
olli

I've committed the following diff to devel/apr1 in to preserve
this issue in future.

Index: apr1/Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/apr1/Makefile,v
retrieving revision 1.112
diff -u -r1.112 Makefile
--- apr1/Makefile       4 Dec 2010 07:31:00 -0000       1.112
+++ apr1/Makefile       1 Apr 2011 11:36:19 -0000
@@ -225,6 +225,9 @@
        cd ${APU_WRKDIR} ; \
                ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf \
                --with-apr=${APR_WRKDIR}
+       ${REINPLACE_CMD} -e 's/ gsed//g' \
+               ${APR_WRKDIR}/build/libtool.m4 \
+               ${APR_WRKDIR}/configure
        cd ${APR_WRKDIR}; \
                ${SETENV} ${CONFIGURE_ENV} ${SH} \
                ./configure ${CONFIGURE_ARGS} ${APR_CONF_ARGS}

_______________________________________________
freebsd-apache@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-apache
To unsubscribe, send any mail to "freebsd-apache-unsubscribe@freebsd.org"




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