GraphicsMagick: jpeg/jconfig.h Remove BMP, GIF, PPM and TGA code...
GraphicsMagick Commits <[email protected]>
| Newsgroups | gmane.comp.video.graphicsmagick.cvs |
|---|---|
| Message-ID | <mailman.9944.1662293758.28493.graphicsmagick-commit@lists.sourceforge.net> |
changeset d5746acc90da in /hg/GraphicsMagick details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=d5746acc90da summary: jpeg/jconfig.h Remove BMP, GIF, PPM and TGA coders builtin jpeg library as far as GM has its own coders. diffstat: ChangeLog | 5 +++++ jpeg/jconfig.h | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diffs (31 lines): diff -r 1cff52129d5f -r d5746acc90da ChangeLog --- a/ChangeLog Sun Aug 28 09:16:21 2022 -0500 +++ b/ChangeLog Sun Sep 04 14:15:28 2022 +0200 @@ -1,3 +1,8 @@ +2022-09-04 Fojtik Jaroslav <[email protected]> + + * jpeg/jconfig.h Remove BMP, GIF, PPM and TGA coders built + in jpeg library as far as GM has its own coders. + 2022-08-28 Bob Friesenhahn <[email protected]> * fuzzing/oss-fuzz-build.sh: Add messaging regarding building diff -r 1cff52129d5f -r d5746acc90da jpeg/jconfig.h --- a/jpeg/jconfig.h Sun Aug 28 09:16:21 2022 -0500 +++ b/jpeg/jconfig.h Sun Sep 04 14:15:28 2022 +0200 @@ -36,11 +36,11 @@ #ifdef JPEG_CJPEG_DJPEG -#define BMP_SUPPORTED /* BMP image file format */ -#define GIF_SUPPORTED /* GIF image file format */ -#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */ +#undef BMP_SUPPORTED /* BMP image file format */ +#undef GIF_SUPPORTED /* GIF image file format */ +#undef PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */ #undef RLE_SUPPORTED /* Utah RLE image file format */ -#define TARGA_SUPPORTED /* Targa image file format */ +#undef TARGA_SUPPORTED /* Targa image file format */ #define TWO_FILE_COMMANDLINE /* optional */ #define USE_SETMODE /* Microsoft has setmode() */