diff options
author | 2000-04-05 22:03:33 +0000 | |
---|---|---|
committer | 2000-04-05 22:03:33 +0000 | |
commit | 840fe7cc793054f8a348e6fc57723c2be322bfed (patch) | |
tree | 86c44ba0b9e3904b639960c16b883fe460d56536 | |
parent | do not exhaust the random pool while debugging (diff) | |
download | wireguard-openbsd-840fe7cc793054f8a348e6fc57723c2be322bfed.tar.xz wireguard-openbsd-840fe7cc793054f8a348e6fc57723c2be322bfed.zip |
seed srandom from /dev/arandom not /dev/urandom
-rw-r--r-- | gnu/usr.bin/perl/Makefile.bsd-wrapper | 4 |
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' |