From owner-freebsd-apache@FreeBSD.ORG Fri Apr 8 02:12:09 2011 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98D99106566C for ; Fri, 8 Apr 2011 02:12:09 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from exhub015-1.exch015.msoutlookonline.net (exhub015-1.exch015.msoutlookonline.net [207.5.72.93]) by mx1.freebsd.org (Postfix) with ESMTP id 878148FC12 for ; Fri, 8 Apr 2011 02:12:09 +0000 (UTC) Received: from [192.168.1.2] (173.66.131.189) by smtpx15.msoutlookonline.net (207.5.72.103) with Microsoft SMTP Server (TLS) id 8.2.254.0; Thu, 7 Apr 2011 19:12:08 -0700 Message-ID: <4D9E6EF6.502@p6m7g8.com> Date: Thu, 7 Apr 2011 22:12:06 -0400 From: "Philip M. Gollucci" Organization: P6M7G8 Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.15) Gecko/20110303 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: , Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Cc: Subject: Fwd: Re: Update apache22 X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Apr 2011 02:12:09 -0000 issue now reported up stream -------- Original Message -------- Subject: Re: Update apache22 Date: Fri, 01 Apr 2011 13:51:00 +0200 From: Olli Hauer Reply-To: ohauer@freebsd.org To: Ryusuke SUZUKI , 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"