From: Ryan C. Gordon Date: Thu, 13 May 2010 03:41:54 +0000 (-0400) Subject: Added a basic libjpeg config header. X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=e403b2bb4de5caac068bccf1957d23c909abe9ef;p=lugaru.git Added a basic libjpeg config header. --- diff --git a/Dependencies/libjpeg/jconfig.h b/Dependencies/libjpeg/jconfig.h new file mode 100644 index 0000000..f09fd96 --- /dev/null +++ b/Dependencies/libjpeg/jconfig.h @@ -0,0 +1,18 @@ +#define HAVE_PROTOTYPES +#define HAVE_STDDEF_H +#define HAVE_STDLIB_H +#define NEED_BSD_STRINGS +#define NEED_SYS_TYPES_H + +#ifdef JPEG_INTERNALS +#define INLINE inline +#endif /* JPEG_INTERNALS */ + +#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 */ +#endif /* JPEG_CJPEG_DJPEG */ +