Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 May 2014 21:37:19 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r353212 - head/www/lighttpd
Message-ID:  <201405072137.s47LbJpc000444@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



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