aboutsummaryrefslogtreecommitdiff
path: root/dns/ldns
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2012-05-28 04:51:14 +0000
committerMartin Wilke <miwi@FreeBSD.org>2012-05-28 04:51:14 +0000
commit884d68e374a39050632824d768ace1c095f59f4e (patch)
tree0cf7779a13127128aaacc74c6870c719fc188103 /dns/ldns
parentfd961bb24d5c1fb47ed0ba7a481ad0881fb26155 (diff)
downloadports-884d68e374a39050632824d768ace1c095f59f4e.tar.gz
ports-884d68e374a39050632824d768ace1c095f59f4e.zip
- Disable ECDSA support
PR: 168394 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=297570
Diffstat (limited to 'dns/ldns')
-rw-r--r--dns/ldns/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/dns/ldns/Makefile b/dns/ldns/Makefile
index 0d5be8263e63..dd2f99f067ed 100644
--- a/dns/ldns/Makefile
+++ b/dns/ldns/Makefile
@@ -7,6 +7,7 @@
PORTNAME= ldns
PORTVERSION= 1.6.13
+PORTREVISION= 1
CATEGORIES= dns
MASTER_SITES= http://www.nlnetlabs.nl/downloads/ldns/ \
CRITICAL
@@ -25,7 +26,6 @@ OPTIONS= DOCS "With documentation" Off \
EXAMPLES "With example programs" On \
DRILL "With drill program" On \
GOST "GOST signatures enabled (requires openssl >= 1.0.0)" Off \
- ECDSA "Without ECDSA support" Off \
PYLDNS "Build python bindings" Off
.include <bsd.port.options.mk>
@@ -261,10 +261,6 @@ MAN1+= ldns-chaos.1 ldns-compare-zones.1 ldns-dpa.1 \
PLIST_SUB+= EXAMPLES="@comment "
.endif
-.if defined(WITHOUT_ECDSA)
-CONFIGURE_ARGS+=--disable-ecdsa
-.endif
-
.if defined(WITH_PYLDNS)
CONFIGURE_ARGS+=--with-pyldns
BUILD_DEPENDS+= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13