mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
Only use ZLib module on RISC OS when configured
This commit is contained in:
parent
e7abe7e909
commit
ed3f4dad7a
@ -1,3 +1,8 @@
|
||||
2004-01-03 Stefan Bellon <sbellon@sbellon.de>
|
||||
|
||||
* compress.c [__riscos__]: Only use RISC OS' own ZLib module if
|
||||
configured to use it.
|
||||
|
||||
2003-12-30 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* options.h, g10.c (main), import.c (parse_import_options,
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <zlib.h>
|
||||
#ifdef __riscos__
|
||||
#if defined(__riscos__) && defined(USE_ZLIBRISCOS)
|
||||
# include "zlib-riscos.h"
|
||||
#endif
|
||||
|
||||
@ -53,7 +53,7 @@ init_compress( compress_filter_context_t *zfx, z_stream *zs )
|
||||
int rc;
|
||||
int level;
|
||||
|
||||
#ifdef __riscos__
|
||||
#if defined(__riscos__) && defined(USE_ZLIBRISCOS)
|
||||
static int zlib_initialized = 0;
|
||||
|
||||
if (!zlib_initialized)
|
||||
|
Loading…
x
Reference in New Issue
Block a user