aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/rand/Makefile.ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-01-08 10:59:26 +0000
committerRichard Levitte <levitte@openssl.org>2001-01-08 10:59:26 +0000
commit0c61e299b35a0789d5de7c1972b15a82dff2f122 (patch)
tree548e4119f07dea7f70436003d196dbaca8f7830a /crypto/rand/Makefile.ssl
parent0b33bc65cd1bde346eae5b25d6f2d693c115b901 (diff)
downloadopenssl-0c61e299b35a0789d5de7c1972b15a82dff2f122.tar.gz
Change RAND_poll for Unix to try a number of devices and only read
them for a short period of time (actually, poll them with select(), then read() whatever is there), which is about 10ms (hard-coded value) each. Separate Windows and Unixly code, and start on a VMS variant that currently just returns 0.
Diffstat (limited to 'crypto/rand/Makefile.ssl')
-rw-r--r--crypto/rand/Makefile.ssl6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/rand/Makefile.ssl b/crypto/rand/Makefile.ssl
index 712938bcf4..bd3342c563 100644
--- a/crypto/rand/Makefile.ssl
+++ b/crypto/rand/Makefile.ssl
@@ -22,8 +22,10 @@ TEST= randtest.c
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c rand_win.c
-LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o rand_win.o
+LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \
+ rand_win.c rand_unix.c
+LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
+ rand_win.o rand_unix.o
SRC= $(LIBSRC)