aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--THANKS1
-rw-r--r--configure.ac2
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e259bb82..60eb2cb0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/THANKS b/THANKS
index dd7424dad..e54cf65bd 100644
--- a/THANKS
+++ b/THANKS
@@ -82,6 +82,7 @@ Holger Trapp [email protected]
Hugh Daniel [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"
;;