Date: Thu, 16 Jun 2005 10:15:47 +0400 From: Sergey Matveychuk <sem@FreeBSD.org> To: Pav Lucistnik <pav@FreeBSD.org> Cc: freebsd-ports-bugs@FreeBSD.org, hendrik@scholz.net Subject: Re: ports/82288: maintainer-update: www/lighttpd (1.3.13 to 1.3.14) Message-ID: <42B11913.3020701@FreeBSD.org> In-Reply-To: <200506152109.j5FL9gtN012020@freefall.freebsd.org> References: <200506152109.j5FL9gtN012020@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Pav Lucistnik wrote: > Synopsis: maintainer-update: www/lighttpd (1.3.13 to 1.3.14) > > State-Changed-From-To: open->closed > State-Changed-By: pav > State-Changed-When: Wed Jun 15 21:09:33 GMT 2005 > State-Changed-Why: > Committed, thanks! > > http://www.freebsd.org/cgi/query-pr.cgi?pr=82288 OPTIONS= OPENSSL "Enable SSL support" on \ OPENLDAP "Enable LDAP support" off \ MYSQL "Enable MYSQL support" off \ IPV6 "Disable IPV6 support" off .if !defined(WITHOUT_OPENSSL) USE_OPENSSL= yes .endif .include <bsd.port.pre.mk> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This will not work. WITHOUT_OPENSSL will never be setted. There is a workaround for OPENSSL: .include <bsd.port.pre.mk> .if !defined(WITHOUT_SSL) .include "${PORTSDIR}/Mk/bsd.openssl.mk" USE_OPENSSL= yes CONFIGURE_ARGS+= --with-openssl .endif -- Sem.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?42B11913.3020701>