diff options
author | mat <mat@FreeBSD.org> | 2016-06-29 22:22:47 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-06-29 22:22:47 +0800 |
commit | 09410c051548c154cfc17c25ddb40ec570d798cc (patch) | |
tree | e5b127ee6a72d6825c3281907d700d1adf36dc47 /www/obhttpd | |
parent | 06854ba68cc8bc881b74664760bb15eef7147574 (diff) | |
download | freebsd-ports-gnome-09410c051548c154cfc17c25ddb40ec570d798cc.tar.gz freebsd-ports-gnome-09410c051548c154cfc17c25ddb40ec570d798cc.tar.zst freebsd-ports-gnome-09410c051548c154cfc17c25ddb40ec570d798cc.zip |
Remove all usage of OPENSSL_PORT from ports, this is deprecated, and
always was a user defined variable.
Sponsored by: Absolight
Diffstat (limited to 'www/obhttpd')
-rw-r--r-- | www/obhttpd/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/obhttpd/Makefile b/www/obhttpd/Makefile index 16075e04fc58..5af8a7238e77 100644 --- a/www/obhttpd/Makefile +++ b/www/obhttpd/Makefile @@ -20,7 +20,6 @@ USE_RC_SUBR= obhttpd USES= uidfix WITH_OPENSSL_PORT=yes -OPENSSL_PORT= security/libressl CFLAGS+= -Wall @@ -48,4 +47,10 @@ post-install: ${INSTALL_DATA} ${WRKDIR}/${GH_PROJECT}-${PORTVERSION}/src/etc/examples/httpd.conf \ ${STAGEDIR}${PREFIX}/etc/obhttpd.conf.sample -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if empty(SSL_DEFAULT:Mlibressl*) +IGNORE= Need LibreSSL to build. set DEFAULT_VERSIONS+=ssl=libressl and rebuild everything. +.endif + +.include <bsd.port.post.mk> |