diff options
author | Doug Barton <dougb@FreeBSD.org> | 2005-11-27 01:03:06 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2005-11-27 01:03:06 +0000 |
commit | 64bab3473c14cb385a1a69b26a180275e54eea1b (patch) | |
tree | 4550276f7748ee60f4a87b44ca738a39338725d9 /dns/bind94 | |
parent | 46aaad32ff36684b06eaaceceedffcaa638d15db (diff) | |
download | ports-64bab3473c14cb385a1a69b26a180275e54eea1b.tar.gz ports-64bab3473c14cb385a1a69b26a180275e54eea1b.zip |
Notes
Diffstat (limited to 'dns/bind94')
-rw-r--r-- | dns/bind94/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dns/bind94/Makefile b/dns/bind94/Makefile index 276a8d1bea48..8d1aff2298e5 100644 --- a/dns/bind94/Makefile +++ b/dns/bind94/Makefile @@ -28,11 +28,17 @@ COMMENT= Completely new version of the BIND DNS suite with updated DNSSEC ISCVERSION= 9.3.1 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps --with-openssl \ +CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps \ --with-randomdev=/dev/random USE_OPENSSL= yes +.if defined(WITH_OPENSSL_PORT) +CONFIGURE_ARGS+= --with-openssl=/usr/local +.else +CONFIGURE_ARGS+= --with-openssl +.endif + # ISC staff has informed me that for 9.3.x, threads are always a bad idea. # Leave the affirmative option for those that want to experiment. .if defined(WITH_BIND9_THREADS) |