diff options
author | 2014-05-29 05:43:06 +0000 | |
---|---|---|
committer | 2014-05-29 05:43:06 +0000 | |
commit | 2d2e2d17d8db00c99d0a0024500973319d5d4315 (patch) | |
tree | 3e49ab63d90e24090d1730d281bf1f4a2723e342 | |
parent | When vmcmd_map_readvn() maps in the page it reads into, it forces (diff) | |
download | wireguard-openbsd-2d2e2d17d8db00c99d0a0024500973319d5d4315.tar.xz wireguard-openbsd-2d2e2d17d8db00c99d0a0024500973319d5d4315.zip |
We now use arc4random() so PERL_RANDOM_DEVICE is no longer needed.
ok afresh@
-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 a7fd4d10bcf..d18541fc19a 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.94 2014/03/24 15:05:12 afresh1 Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.95 2014/05/29 05:43:06 guenther Exp $ # # Build wrapper for Perl 5.16.2 # @@ -44,7 +44,7 @@ DYNALOADER=ext/DynaLoader/dl_dlopen.xs # Arguments passed to Configure... -CPPFLAGS+= -DPERL_CORE -DNO_LOCALE_NUMERIC -DNO_LOCALE_COLLATE -DPERL_RANDOM_DEVICE=\"/dev/arandom\" -DBIG_TIME -I. +CPPFLAGS+= -DPERL_CORE -DNO_LOCALE_NUMERIC -DNO_LOCALE_COLLATE -DBIG_TIME -I. .if defined (INSTALL_STRIP) && ${INSTALL_STRIP} == "-s" STRIPFLAGS='-s' |