summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-08-05 15:29:58 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-08-05 15:29:58 +0000
commitf10f4447dad668df53d9df65beaa2885f61bc9aa (patch)
tree798fe397a706e2ab1e8850939a5cc4864e1a7208 /apps/apps.h
parentd76b8c89ec218b3ce6c83e27220d2df4d0213599 (diff)
Update from 1.0.0-stable.
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/apps.h b/apps/apps.h
index cdfb5efa5a..361ca9eea4 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -168,6 +168,12 @@ extern BIO *bio_err;
#define do_pipe_sig()
#endif
+#ifdef OPENSSL_NO_COMP
+#define zlib_cleanup()
+#else
+#define zlib_cleanup() COMP_zlib_cleanup()
+#endif
+
#if defined(MONOLITH) && !defined(OPENSSL_C)
# define apps_startup() \
do_pipe_sig()
@@ -182,7 +188,7 @@ extern BIO *bio_err;
do { CONF_modules_unload(1); destroy_ui_method(); \
OBJ_cleanup(); EVP_cleanup(); ENGINE_cleanup(); \
CRYPTO_cleanup_all_ex_data(); ERR_remove_thread_state(NULL); \
- ERR_free_strings(); COMP_zlib_cleanup();} while(0)
+ ERR_free_strings(); zlib_cleanup();} while(0)
# else
# define apps_startup() \
do { do_pipe_sig(); CRYPTO_malloc_init(); \
@@ -192,7 +198,7 @@ extern BIO *bio_err;
do { CONF_modules_unload(1); destroy_ui_method(); \
OBJ_cleanup(); EVP_cleanup(); \
CRYPTO_cleanup_all_ex_data(); ERR_remove_thread_state(NULL); \
- ERR_free_strings(); } while(0)
+ ERR_free_strings(); zlib_cleanup(); } while(0)
# endif
#endif