diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-06-15 21:09:27 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-06-15 21:09:27 +0000 |
commit | b4971706d326c089922193a6bfc220886380be7f (patch) | |
tree | 2795b9c49174df3f618d6cef7d70316847809ea0 /www/lighttpd/Makefile | |
parent | 8aef8486ecfda2fd7633a25036fad8c72b9997b5 (diff) |
Notes
Diffstat (limited to 'www/lighttpd/Makefile')
-rw-r--r-- | www/lighttpd/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index b86cb4484168..7c59533fd45a 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -6,8 +6,7 @@ # PORTNAME= lighttpd -PORTVERSION= 1.3.13 -PORTREVISION= 1 +PORTVERSION= 1.3.14 CATEGORIES= www MASTER_SITES= http://www.lighttpd.net/download/ \ http://dl.fkb.wormulon.net/lighttpd/ \ @@ -36,24 +35,27 @@ OPTIONS= OPENSSL "Enable SSL support" on \ MYSQL "Enable MYSQL support" off \ IPV6 "Disable IPV6 support" off +.if !defined(WITHOUT_OPENSSL) +USE_OPENSSL= yes +.endif + .include <bsd.port.pre.mk> -.if defined(WITH_OPENSSL) -USE_OPENSSL= yes +.if !defined(WITHOUT_OPENSSL) CONFIGURE_ARGS+= --with-openssl .endif -.if !defined(WITHOUT_OPENLDAP) +.if defined(WITH_OPENLDAP) USE_OPENLDAP= yes CONFIGURE_ARGS+= --with-ldap .endif -.if !defined(WITHOUT_MYSQL) +.if defined(WITH_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql .endif -.if !defined(WITHOUT_IPV6) +.if defined(WITH_IPV6) CONFIGURE_ARGS+= --disable-ipv6 .endif |