diff options
author | itojun <itojun@pkgsrc.org> | 2000-12-16 06:28:08 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2000-12-16 06:28:08 +0000 |
commit | f6c0dd26ca38e2720ac0143a4bfa2dc3e29b2bf8 (patch) | |
tree | 942c59a5e445f4b48e21cdb7d97f67286f76912a | |
parent | 44cdb5ecb21ab2e19618db6684bb44cdb157b19a (diff) | |
download | pkgsrc-f6c0dd26ca38e2720ac0143a4bfa2dc3e29b2bf8.tar.gz |
use /dev/urandom for dnssec-*. "good enough" random number should be enough
(briefly discussed at dnssec workshop after IETF49).
-rw-r--r-- | net/bind9-current/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/bind9-current/Makefile b/net/bind9-current/Makefile index 9ee5591819b..7b94986b796 100644 --- a/net/bind9-current/Makefile +++ b/net/bind9-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2000/12/15 21:58:10 itojun Exp $ +# $NetBSD: Makefile,v 1.4 2000/12/16 06:28:08 itojun Exp $ # DISTNAME= bind-${BIND_VERSION} @@ -23,9 +23,11 @@ ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-arm32 NetBSD-*-m68k BIND_VERSION= 9.1.0b1 DIST_SUBDIR= bind/${BIND_VERSION} GNU_CONFIGURE= yes +# dnssec-keygen needs "good enough" random number, use /dev/urandom CONFIGURE_ARGS+=--with-libtool=yes \ --sysconfdir=/etc \ - --localstatedir=/var + --localstatedir=/var \ + --with-randomdev=/dev/urandom LDFLAGS+= -Wl,-R${LOCALBASE}/pthreads/lib -L${LOCALBASE}/pthreads/lib post-install: |