diff options
author | sem <sem@FreeBSD.org> | 2009-12-01 02:07:29 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2009-12-01 02:07:29 +0800 |
commit | 1e2c89186a67ff2c2bbe0abf5e5263ce18918e8e (patch) | |
tree | 02ee125e1bb70cb02b6cf13f04d8b591835454e0 /dns/unbound | |
parent | a9775a9b3f211389f0272dcb5af5be6d32fd72b6 (diff) | |
download | freebsd-ports-gnome-1e2c89186a67ff2c2bbe0abf5e5263ce18918e8e.tar.gz freebsd-ports-gnome-1e2c89186a67ff2c2bbe0abf5e5263ce18918e8e.tar.zst freebsd-ports-gnome-1e2c89186a67ff2c2bbe0abf5e5263ce18918e8e.zip |
- Fixe build on 6.4 amd64
Reported by: pav
Tested by: bud@RusNET.irc
Diffstat (limited to 'dns/unbound')
-rw-r--r-- | dns/unbound/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dns/unbound/Makefile b/dns/unbound/Makefile index c3c7c3d33b6a..9c392c8ee038 100644 --- a/dns/unbound/Makefile +++ b/dns/unbound/Makefile @@ -51,6 +51,11 @@ PYTHON= "@comment " .include <bsd.port.pre.mk> +# A workaround for broken OpenSSL on 6.4 amd64 +.if ${ARCH} == "amd64" && ${OSVERSION} >= 604000 && ${OSVERSION} < 700000 +CONFIGURE_ARGS+= --disable-sha2 +.endif + .if ${ARCH} == "sparc64" && ${OSVERSION} < 700000 BROKEN= Does not build on sparc64-6 .endif |