summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-06-11 14:31:08 +0100
committerJanusz Kozerski <j.kozerski@samsung.com>2014-10-20 15:25:27 +0200
commitad428731a9bc47244cc1c8bab7ac91d37bfcf184 (patch)
tree45e32e5c3454c079825f9712b88f9a1844151059 /apps
parent24cf793e817cbfd3b77d60df0fe51e5004d08b4e (diff)
downloadopenssl-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/enc.c b/apps/enc.c
index 19ea3df..c6a211b 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -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);