diff options
author | marino <marino@FreeBSD.org> | 2014-10-24 03:54:50 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-10-24 03:54:50 +0800 |
commit | 482fa114616898aebea4d06d65092fbf6620f1e6 (patch) | |
tree | fe9e66205e011c88c1b16c77e9d799067775223b /dns/unbound | |
parent | bc34f146666b9bdfb659987b8770976418c7e163 (diff) | |
download | freebsd-ports-gnome-482fa114616898aebea4d06d65092fbf6620f1e6.tar.gz freebsd-ports-gnome-482fa114616898aebea4d06d65092fbf6620f1e6.tar.zst freebsd-ports-gnome-482fa114616898aebea4d06d65092fbf6620f1e6.zip |
dns/unbound: check OPSYS with OSVERION (check broke DragonFly)
Diffstat (limited to 'dns/unbound')
-rw-r--r-- | dns/unbound/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/unbound/Makefile b/dns/unbound/Makefile index f0714e32852d..bcc258378590 100644 --- a/dns/unbound/Makefile +++ b/dns/unbound/Makefile @@ -55,7 +55,7 @@ PYTHON= "@comment " .endif .if ${PORT_OPTIONS:MGOST} -. if ${OSVERSION} < 1000015 +. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015 WITH_OPENSSL_PORT= yes . endif DEPENDS_ARGS+= WITH_GOST=yes @@ -79,7 +79,7 @@ MUNIN= "@comment " .endif .if ${PORT_OPTIONS:MLIBEVENT} -.if ${OSVERSION} >= 1000015 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000015 BROKEN= Unbound with libevent crashes on FreeBSD 10+ due to Capsicum .endif LIB_DEPENDS+= libevent.so:${PORTSDIR}/devel/libevent2 |