From owner-freebsd-apache@FreeBSD.ORG Wed Apr 9 21:19:43 2014 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2FEDA99C for ; Wed, 9 Apr 2014 21:19:43 +0000 (UTC) Received: from a.mx.jt-sys.co.jp (sbas08.apsv02.kids-way.ne.jp [61.122.225.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7196E1194 for ; Wed, 9 Apr 2014 21:19:41 +0000 (UTC) Received: (qmail 76028 invoked by uid 989); 10 Apr 2014 06:12:58 +0900 Received: from fl1-125-198-196-154.aic.mesh.ad.jp (HELO ?192.168.129.24?) (125.198.196.154) by a.mx.jt-sys.co.jp with SMTP; 10 Apr 2014 06:12:58 +0900 Message-ID: <5345B7D8.6060204@jt-sys.co.jp> Date: Thu, 10 Apr 2014 06:12:56 +0900 From: Katsuya Higuchi User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: apache@FreeBSD.org Subject: FreeBSD Port: www/apache22 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 21:19:43 -0000 Dear Sir, www/apache22 2.2.27_1 has little problem. ports-mgmt/poudriere installs security/openssl for www/apache22 at build-depends. This causes empty OPENSSL_INSTALLED at post-patch. Please refer an attached picture. So, I think that the patch should be inserted to pre-configure. -------- # diff -cu Makefile.org Makefile --- Makefile.org 2014-04-09 08:33:57.000000000 +0900 +++ Makefile 2014-04-10 05:44:33.101744943 +0900 @@ -127,6 +127,13 @@ @${ECHO_MSG} "" @${ECHO_MSG} " You can check your modules configuration by using make show-modules" @${ECHO_MSG} "" +.if ${PORT_OPTIONS:MSSL} +. if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000 +. if defined(OPENSSL_INSTALLED) && ${OPENSSL_INSTALLED} != "" + ${REINPLACE_CMD} -e "s|(ALL_CFLAGS)|(ALL_CFLAGS) -L${OPENSSLLIB}|" ${WRKSRC}/build/rules.mk.in +. endif +. endif +.endif show-options: @${SED} -ne 's/^##//p' ${APACHEDIR}/Makefile.doc @@ -149,15 +156,6 @@ @${RM} -rf ${WRKSRC}/srclib @${REINPLACE_CMD} -e 's/srclib//' ${WRKSRC}/Makefile.in -# Fix build on FreeBSD-10+ with OpenSSL from ports -.if ${PORT_OPTIONS:MSSL} -. if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000 -. if defined(OPENSSL_INSTALLED) && ${OPENSSL_INSTALLED} != "" - ${REINPLACE_CMD} -e "s|(ALL_CFLAGS)|(ALL_CFLAGS) -L${OPENSSLLIB}|" ${WRKSRC}/build/rules.mk.in -. endif -. endif -.endif - post-configure: @FTPUSERS=`${EGREP} -v '^#' /etc/ftpusers| ${TR} -s "\n" " "` ;\ ${REINPLACE_CMD} -e "s,%%FTPUSERS%%,$${FTPUSERS}," ${WRKSRC}/docs/conf/extra/httpd-userdir.conf -------- Sorry for my poor english. Thanks, Katsuya Higuchi higuchi@jt-sys.co.jp