diff options
author | Tom Lane <tgl@redhat.com> | 2009-01-09 00:42:00 +0100 |
---|---|---|
committer | Christoph Brill <egore911@egore911.de> | 2009-01-09 00:42:00 +0100 |
commit | 06977034874aac38d3559781af5688cac7ab8d25 (patch) | |
tree | 0a05f7481f10a358abcf0a6caa2ae0459ec2f829 | |
parent | de5582fa9c8942723a9bfca250decf7e709e53a3 (diff) |
[PATCH] libjpeg-autoconf.patch
Work around bogosity in autoconf-2.62: it breaks #undef's that have a
comment after them, a construct that has worked fine in every previous
autoconf release. See bz #449471 and bz #449245.
-rw-r--r-- | jconfig.cfg | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/jconfig.cfg b/jconfig.cfg index 36a04fa..0c54bb6 100644 --- a/jconfig.cfg +++ b/jconfig.cfg @@ -28,11 +28,16 @@ #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 RLE_SUPPORTED /* Utah RLE image file format */ -#define TARGA_SUPPORTED /* Targa image file format */ +/* BMP image file format */ +#define BMP_SUPPORTED +/* GIF image file format */ +#define GIF_SUPPORTED +/* PBMPLUS PPM/PGM image file format */ +#define PPM_SUPPORTED +/* Utah RLE image file format */ +#undef RLE_SUPPORTED +/* Targa image file format */ +#define TARGA_SUPPORTED #undef TWO_FILE_COMMANDLINE #undef NEED_SIGNAL_CATCHER |