svn commit: r353212 - head/www/lighttpd

Tijl Coosemans tijl at FreeBSD.org
Wed May 7 21:37:20 UTC 2014


Author: tijl
Date: Wed May  7 21:37:19 2014
New Revision: 353212
URL: http://svnweb.freebsd.org/changeset/ports/353212
QAT: https://qat.redports.org/buildarchive/r353212/

Log:
  Fix the WEBDAV option.  It sets USE_GNOME which needs to happen before
  including bsd.port.pre.mk.
  
  Reported by:	Christos Chatzaras <chris at cretaforce.gr>

Modified:
  head/www/lighttpd/Makefile

Modified: head/www/lighttpd/Makefile
==============================================================================
--- head/www/lighttpd/Makefile	Wed May  7 21:11:19 2014	(r353211)
+++ head/www/lighttpd/Makefile	Wed May  7 21:37:19 2014	(r353212)
@@ -76,7 +76,7 @@ PLIST_SUB+=		LOGROOT="${LIGHTTPD_LOGROOT
 
 .endif # !defined(_BUILDING_LIGHTTPD_MODULE)
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
 .if !defined(_BUILDING_LIGHTTPD_MODULE)
 # Default REQUIRE to rc.d script
@@ -88,7 +88,7 @@ PORTDOCS=	${DOCS}
 .endif
 
 .if ${PORT_OPTIONS:MOPENSSL}
-.include "${PORTSDIR}/Mk/bsd.openssl.mk"
+USE_OPENSSL=		yes
 CONFIGURE_ARGS+=	--with-openssl \
 			--with-openssl-includes=${OPENSSLINC} \
 			--with-openssl-libs=${OPENSSLLIB}
@@ -227,4 +227,4 @@ regression-test: test
 
 .endif # !defined(_BUILDING_LIGHTTPD_MODULE)
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>


More information about the svn-ports-all mailing list