summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-08 19:34:14 +0000
committerBodo Möller <bodo@openssl.org>2001-03-08 19:34:14 +0000
commitb28ec124204a59a866af72f807ef96487f0862e1 (patch)
tree36943692a30c77441e263917aa7dbfb4169d92b6 /crypto/err
parentbb62a8b0c57c88ec189389f07250dee9c87d0681 (diff)
Fixes to make 'no-ec' work (it should not turn 'objects' into 'objts' for example)
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err_all.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index 2ca5bef136..b088de65f5 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -59,7 +59,9 @@
#include <stdio.h>
#include <openssl/asn1.h>
#include <openssl/bn.h>
+#ifndef OPENSSL_NO_EC
#include <openssl/ec.h>
+#endif
#include <openssl/buffer.h>
#include <openssl/bio.h>
#ifndef OPENSSL_NO_RSA
@@ -110,7 +112,9 @@ void ERR_load_crypto_strings(void)
ERR_load_ASN1_strings();
ERR_load_CONF_strings();
ERR_load_CRYPTO_strings();
+#ifndef OPENSSL_NO_EC
ERR_load_EC_strings();
+#endif
/* skip ERR_load_SSL_strings() because it is not in this library */
ERR_load_BIO_strings();
ERR_load_PKCS7_strings();