ports/82288: maintainer-update: www/lighttpd (1.3.13 to 1.3.14)

Sergey Matveychuk sem at FreeBSD.org
Thu Jun 16 06:15:53 UTC 2005


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.



More information about the freebsd-ports-bugs mailing list