summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-04-05 22:03:34 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-04-05 22:03:34 +0000
commit4a25fddbd801b3aef3009854d82f4d2ca245d37f (patch)
treeeef9605c603173843578aead8ff1e620fd8cf7f6
parent877b9513bede679e076041485236506ce0015e2b (diff)
seed srandom from /dev/arandom not /dev/urandom
-rw-r--r--gnu/usr.bin/perl/Makefile.bsd-wrapper4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper b/gnu/usr.bin/perl/Makefile.bsd-wrapper
index e04ff5dc8b3..4fb38548ecc 100644
--- a/gnu/usr.bin/perl/Makefile.bsd-wrapper
+++ b/gnu/usr.bin/perl/Makefile.bsd-wrapper
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.bsd-wrapper,v 1.31 2000/01/28 04:40:34 millert Exp $
+# $OpenBSD: Makefile.bsd-wrapper,v 1.32 2000/04/05 22:03:33 millert Exp $
#
# Build wrapper for Perl 5.005_03.
#
@@ -86,7 +86,7 @@ SRCS= gv.c toke.c perly.c op.c regcomp.c dump.c util.c mg.c byterun.c hv.c \
av.c run.c pp_hot.c sv.c pp.c scope.c pp_ctl.c pp_sys.c doop.c doio.c \
regexec.c taint.c deb.c universal.c globals.c perl.c perlio.c
-CFLAGS+= -DPERL_CORE -I.
+CFLAGS+= -DPERL_CORE -DPERL_RANDOM_DEVICE=\"/dev/arandom\" -I.
.if defined (INSTALL_STRIP) && ${INSTALL_STRIP} == "-s"
INST_PROG='/usr/bin/install -cs'