diff options
author | itojun <itojun@pkgsrc.org> | 2001-01-28 06:51:01 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2001-01-28 06:51:01 +0000 |
commit | 2ebeea38f20b71a4dbfa34510665901a173555a0 (patch) | |
tree | 4759386cd491f3581450187ef4761dfe3439fe21 /net/bind9 | |
parent | 4888096dd32c8b7ac2cb4635a792948a3d0e7d3b (diff) | |
download | pkgsrc-2ebeea38f20b71a4dbfa34510665901a173555a0.tar.gz |
use urandom (should be good enough), otherwise dnssec-keygen will take forever
Diffstat (limited to 'net/bind9')
-rw-r--r-- | net/bind9/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/bind9/Makefile b/net/bind9/Makefile index 826e9098455..4ec7509bab0 100644 --- a/net/bind9/Makefile +++ b/net/bind9/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2001/01/26 21:12:02 hubertf Exp $ +# $NetBSD: Makefile,v 1.21 2001/01/28 06:51:01 itojun Exp $ # DISTNAME= bind-${BIND_VERSION} @@ -18,9 +18,11 @@ BIND_VERSION= 9.1.0 DIST_SUBDIR= bind/${BIND_VERSION} GNU_CONFIGURE= yes CONFIGURE_ARGS+=--disable-threads # Until we have real threads +# 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-build: |