issue now reported up stream

-------- Original Message --------
Subject: Re: Update apache22
Date: Fri, 01 Apr 2011 13:51:00 +0200
From: Olli Hauer <oha...@freebsd.org>
Reply-To: oha...@freebsd.org
To: Ryusuke SUZUKI <ryus...@freebsd.org>, apa...@freebsd.org
CC: oha...@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?= apa...@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-apa...@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-apache
To unsubscribe, send any mail to "freebsd-apache-unsubscr...@freebsd.org"

Reply via email to