From 66a9f0f8e0033fb685e7a3251fcea04c7702d19e Mon Sep 17 00:00:00 2001 From: Kurt Schwehr Date: Tue, 29 Dec 2020 06:57:29 -0800 Subject: Remove "ifdef VMS" that are no longer necessary. Both sides of the if are now the same. --- libtiff/tif_codec.c | 4 ---- libtiff/tiffiop.h | 4 ---- 2 files changed, 8 deletions(-) diff --git a/libtiff/tif_codec.c b/libtiff/tif_codec.c index 1ed3aa42..f698926d 100644 --- a/libtiff/tif_codec.c +++ b/libtiff/tif_codec.c @@ -80,11 +80,7 @@ static int NotConfigured(TIFF*, int); /* * Compression schemes statically built into the library. */ -#ifdef VMS const TIFFCodec _TIFFBuiltinCODECS[] = { -#else -const TIFFCodec _TIFFBuiltinCODECS[] = { -#endif { "None", COMPRESSION_NONE, TIFFInitDumpMode }, { "LZW", COMPRESSION_LZW, TIFFInitLZW }, { "PackBits", COMPRESSION_PACKBITS, TIFFInitPackBits }, diff --git a/libtiff/tiffiop.h b/libtiff/tiffiop.h index ab10c580..23841f59 100644 --- a/libtiff/tiffiop.h +++ b/libtiff/tiffiop.h @@ -456,11 +456,7 @@ extern int TIFFInitZSTD(TIFF*, int); #ifdef WEBP_SUPPORT extern int TIFFInitWebP(TIFF*, int); #endif -#ifdef VMS extern const TIFFCodec _TIFFBuiltinCODECS[]; -#else -extern const TIFFCodec _TIFFBuiltinCODECS[]; -#endif #if defined(__cplusplus) } -- cgit v1.2.1