diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2002-10-12 Werner Koch <[email protected]> + + * configure.ac (NAME_OF_DEV_URANDOM): Use /dev/urandom for + NetBSD. Reported by Christian Biere. + 2002-10-07 David Shaw <[email protected]> * configure.ac: OpenLDAP 2.0.27 changed the dependencies again. @@ -82,6 +82,7 @@ Holger Trapp [email protected] Hugh Daniel [email protected] Huy Le [email protected] Ian McKellar [email protected] +Ingo Kl�cker [email protected] Ivo Timmermans [email protected] Jan Krueger [email protected] Jan Niehusmann [email protected] diff --git a/configure.ac b/configure.ac index 8299346a3..984d89cf8 100644 --- a/configure.ac +++ b/configure.ac @@ -493,7 +493,7 @@ AC_DEFINE_UNQUOTED(PRINTABLE_OS_NAME, "$PRINTABLE_OS_NAME", NAME_OF_DEV_RANDOM="/dev/random" NAME_OF_DEV_URANDOM="/dev/urandom" case "${target}" in - *-openbsd* | *-netbsd*) + *-openbsd*) NAME_OF_DEV_RANDOM="/dev/srandom" NAME_OF_DEV_URANDOM="/dev/urandom" ;; |