diff options
author | Richard Levitte <levitte@openssl.org> | 2002-10-09 13:40:48 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-10-09 13:40:48 +0000 |
commit | 6a89a25c27df0677e78567cd02c77f30e80814af (patch) | |
tree | 9c29d0eea93980a2a854e639852ed601f712a6e0 /crypto/bio | |
parent | 001ab3abad45752c13af5396a47551f46a6ebfdb (diff) | |
download | openssl-new-6a89a25c27df0677e78567cd02c77f30e80814af.tar.gz |
Add a few more VxWorks targets.
Correct misspelled VXWORKS macros.
Add VXWORKS identifying macros to e_os2.h.
Add required inclusions and mappings for VxWorks in e_os.h.
A few small modifications to make OpenSSL build and work on VxWorks.
PR: 253, except for the change that was handled in an earlier
commit, and a request for easy build of just parts of OpenSSL.
Diffstat (limited to 'crypto/bio')
-rw-r--r-- | crypto/bio/bss_bio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_bio.c b/crypto/bio/bss_bio.c index 1c485a4479..67b1279b99 100644 --- a/crypto/bio/bss_bio.c +++ b/crypto/bio/bss_bio.c @@ -34,7 +34,7 @@ #include "e_os.h" /* VxWorks defines SSIZE_MAX with an empty value causing compile errors */ -#if defined(OPENSSL_SYS_VSWORKS) +#if defined(OPENSSL_SYS_VXWORKS) # undef SSIZE_MAX #endif #ifndef SSIZE_MAX |