From: Bruno Haible Date: Sun, 31 May 2020 10:55:52 +0000 (+0200) Subject: crypto/gc-random: Fix list of crypto devices for Solaris. X-Git-Tag: v1.0~4003 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=debc8aad6d8126a6a9f83399594bb6368d55aa65;p=thirdparty%2Fgnulib.git crypto/gc-random: Fix list of crypto devices for Solaris. * m4/gc-random.m4 (gl_GC_RANDOM): Don't special-case Solaris. --- diff --git a/ChangeLog b/ChangeLog index 5ef05e037c..cacd4c0f5c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2020-05-31 Bruno Haible + + crypto/gc-random: Fix list of crypto devices for Solaris. + * m4/gc-random.m4 (gl_GC_RANDOM): Don't special-case Solaris. + 2020-05-31 Akim Demaille list: fix GCC warnings diff --git a/m4/gc-random.m4 b/m4/gc-random.m4 index 15751cbaa7..a7812a3264 100644 --- a/m4/gc-random.m4 +++ b/m4/gc-random.m4 @@ -1,4 +1,4 @@ -# gc-random.m4 serial 8 +# gc-random.m4 serial 9 dnl Copyright (C) 2005-2020 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -18,7 +18,7 @@ AC_DEFUN([gl_GC_RANDOM], NAME_OF_NONCE_DEVICE="/dev/urandom" ;; - *solaris* | *irix* | *dec-osf* ) + *irix* | *dec-osf* ) NAME_OF_RANDOM_DEVICE="/dev/random" NAME_OF_PSEUDO_RANDOM_DEVICE="/dev/random" NAME_OF_NONCE_DEVICE="/dev/random"