diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2014-06-11 14:31:08 +0100 |
---|---|---|
committer | Janusz Kozerski <j.kozerski@samsung.com> | 2014-10-20 15:25:27 +0200 |
commit | ad428731a9bc47244cc1c8bab7ac91d37bfcf184 (patch) | |
tree | 45e32e5c3454c079825f9712b88f9a1844151059 /apps | |
parent | 24cf793e817cbfd3b77d60df0fe51e5004d08b4e (diff) | |
download | openssl-ad428731a9bc47244cc1c8bab7ac91d37bfcf184.tar.gz openssl-ad428731a9bc47244cc1c8bab7ac91d37bfcf184.tar.bz2 openssl-ad428731a9bc47244cc1c8bab7ac91d37bfcf184.zip |
Fix compilation with no-comp
(cherry picked from commit 7239a09c7b5757ed8d0e9869f3e9b03c0e11f4d1)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/enc.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -67,7 +67,9 @@ #include <openssl/x509.h> #include <openssl/rand.h> #include <openssl/pem.h> +#ifndef OPENSSL_NO_COMP #include <openssl/comp.h> +#endif #include <ctype.h> int set_hex(char *in,unsigned char *out,int size); |