diff options
author | Richard Levitte <levitte@openssl.org> | 2002-10-11 22:05:15 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-10-11 22:05:15 +0000 |
commit | ea97b8672be1c79631ad84ede90b1e946f83ffb0 (patch) | |
tree | 596335940e2d394d5dc812766302158db08963d8 /crypto/rand | |
parent | 0eda8c173813e7be9745ecedd9970b79d6563f3b (diff) | |
download | openssl-new-ea97b8672be1c79631ad84ede90b1e946f83ffb0.tar.gz |
Latest changes from main trunk
Diffstat (limited to 'crypto/rand')
-rw-r--r-- | crypto/rand/Makefile.ssl | 2 | ||||
-rw-r--r-- | crypto/rand/rand_egd.c | 2 | ||||
-rw-r--r-- | crypto/rand/rand_unix.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/crypto/rand/Makefile.ssl b/crypto/rand/Makefile.ssl index 4035e825ef..166895ee9c 100644 --- a/crypto/rand/Makefile.ssl +++ b/crypto/rand/Makefile.ssl @@ -70,7 +70,7 @@ lint: lint -DLINT $(INCLUDES) $(SRC)>fluff depend: - $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) + $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) dclean: $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index 668c785f00..d7dad3efd0 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -114,7 +114,7 @@ int RAND_egd_bytes(const char *path,int bytes) #include <sys/types.h> #include <sys/socket.h> #ifndef NO_SYS_UN_H -# ifdef OPENSSL_SYS_VSWORKS +# ifdef OPENSSL_SYS_VXWORKS # include <streams/un.h> # else # include <sys/un.h> diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c index ec09d74603..7de21d37d0 100644 --- a/crypto/rand/rand_unix.c +++ b/crypto/rand/rand_unix.c @@ -115,7 +115,7 @@ #include <openssl/rand.h> #include "rand_lcl.h" -#if !(defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_OS2)) +#if !(defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_OS2) || defined(OPENSSL_SYS_VXWORKS)) #include <sys/types.h> #include <sys/time.h> |