[dovecot-cvs] dovecot configure.in,1.132,1.133

cras at procontrol.fi cras at procontrol.fi
Wed Jul 9 23:50:19 EEST 2003


Update of /home/cvs/dovecot
In directory danu:/tmp/cvs-serv3927

Modified Files:
	configure.in 
Log Message:
test -e /dev/urandom, not test -c. BSD/OS has it as a symlink to socket.



Index: configure.in
===================================================================
RCS file: /home/cvs/dovecot/configure.in,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -d -r1.132 -r1.133
--- configure.in	26 Jun 2003 16:12:24 -0000	1.132
+++ configure.in	9 Jul 2003 19:50:17 -0000	1.133
@@ -496,7 +496,7 @@
 
 dnl * find random source
 AC_MSG_CHECKING([for /dev/urandom])
-if test -c /dev/urandom; then
+if test -e /dev/urandom; then
   AC_MSG_RESULT(yes)
   AC_DEFINE(HAVE_DEV_URANDOM,, Define if you have /dev/urandom)
   have_random_source=yes



More information about the dovecot-cvs mailing list