diff options
author | nils <nils> | 2006-10-27 21:25:53 +0000 |
---|---|---|
committer | nils <nils> | 2006-10-27 21:25:53 +0000 |
commit | 7ac81d1d909986096b9ac9c40556aeb26061c7bd (patch) | |
tree | 7a511de20e436453bdb27131baea1e209038a9f7 /crypto/ts | |
parent | 6833fbc63086ef6fedac8720985c58b4f787fe53 (diff) | |
download | openssl-7ac81d1d909986096b9ac9c40556aeb26061c7bd.tar.gz |
fix OPENSSL_NO_foo defines
Diffstat (limited to 'crypto/ts')
-rw-r--r-- | crypto/ts/ts.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/crypto/ts/ts.h b/crypto/ts/ts.h index d080f98ea..67e90e91e 100644 --- a/crypto/ts/ts.h +++ b/crypto/ts/ts.h @@ -59,29 +59,30 @@ #ifndef HEADER_TS_H #define HEADER_TS_H +#include <openssl/opensslconf.h> #include <openssl/symhacks.h> -#ifndef NO_BUFFER +#ifndef OPENSSL_NO_BUFFER #include <openssl/buffer.h> #endif -#ifndef NO_EVP +#ifndef OPENSSL_NO_EVP #include <openssl/evp.h> #endif -#ifndef NO_BIO +#ifndef OPENSSL_NO_BIO #include <openssl/bio.h> #endif #include <openssl/stack.h> #include <openssl/asn1.h> #include <openssl/safestack.h> -#ifndef NO_RSA +#ifndef OPENSSL_NO_RSA #include <openssl/rsa.h> #endif -#ifndef NO_DSA +#ifndef OPENSSL_NO_DSA #include <openssl/dsa.h> #endif -#ifndef NO_DH +#ifndef OPENSSL_NO_DH #include <openssl/dh.h> #endif |