diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2022-03-29 05:07:18 +0200 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2022-03-29 05:07:18 +0200 |
commit | 2cebba72749c7e564e62a997dd87f912962098c9 (patch) | |
tree | 46a137cda6072613cca1663d89bb508c79713898 /tools/gpgsplit.c | |
parent | scd,w32: Fix socket resource leak. (diff) | |
download | gnupg2-2cebba72749c7e564e62a997dd87f912962098c9.tar.xz gnupg2-2cebba72749c7e564e62a997dd87f912962098c9.zip |
gpg,tools: Remove use of repo only zlib-riscos.h.
* g10/compress.c: Don't use zlib-riscos.h.
* tools/gpgsplit.c: Likewise.
--
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to '')
-rw-r--r-- | tools/gpgsplit.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/gpgsplit.c b/tools/gpgsplit.c index 93458068c..9ff24859a 100644 --- a/tools/gpgsplit.c +++ b/tools/gpgsplit.c @@ -34,9 +34,6 @@ #ifdef HAVE_ZIP # include <zlib.h> #endif -#if defined(__riscos__) && defined(USE_ZLIBRISCOS) -# include "zlib-riscos.h" -#endif #define INCLUDED_BY_MAIN_MODULE 1 #include "../common/util.h" @@ -548,12 +545,6 @@ write_part (FILE *fpin, unsigned long pktlen, unsigned char *p; const char *outname = create_filename (pkttype); -#if defined(__riscos__) && defined(USE_ZLIBRISCOS) - static int initialized = 0; - - if (!initialized) - initialized = riscos_load_module("ZLib", zlib_path, 1); -#endif if (opt_no_split) fpout = stdout; else |