dbf-halloween2015
diff libs/libjpeg/jconfig.h @ 1:c3f5c32cb210
barfed all the libraries in the source tree to make porting easier
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 01 Nov 2015 00:36:56 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libs/libjpeg/jconfig.h Sun Nov 01 00:36:56 2015 +0200 1.3 @@ -0,0 +1,45 @@ 1.4 +/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */ 1.5 +/* see jconfig.doc for explanations */ 1.6 + 1.7 +#define HAVE_PROTOTYPES 1.8 +#define HAVE_UNSIGNED_CHAR 1.9 +#define HAVE_UNSIGNED_SHORT 1.10 +/* #define void char */ 1.11 +/* #define const */ 1.12 +#undef CHAR_IS_UNSIGNED 1.13 +#define HAVE_STDDEF_H 1.14 +#define HAVE_STDLIB_H 1.15 +#undef NEED_BSD_STRINGS 1.16 +#undef NEED_SYS_TYPES_H 1.17 +#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */ 1.18 +#undef NEED_SHORT_EXTERNAL_NAMES 1.19 +#undef INCOMPLETE_TYPES_BROKEN 1.20 + 1.21 +/* Define "boolean" as unsigned char, not int, per Windows custom */ 1.22 +#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */ 1.23 +typedef unsigned char boolean; 1.24 +#endif 1.25 +#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */ 1.26 + 1.27 + 1.28 +#ifdef JPEG_INTERNALS 1.29 + 1.30 +#undef RIGHT_SHIFT_IS_UNSIGNED 1.31 + 1.32 +#endif /* JPEG_INTERNALS */ 1.33 + 1.34 +#ifdef JPEG_CJPEG_DJPEG 1.35 + 1.36 +#define BMP_SUPPORTED /* BMP image file format */ 1.37 +#define GIF_SUPPORTED /* GIF image file format */ 1.38 +#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */ 1.39 +#undef RLE_SUPPORTED /* Utah RLE image file format */ 1.40 +#define TARGA_SUPPORTED /* Targa image file format */ 1.41 + 1.42 +#define TWO_FILE_COMMANDLINE /* optional */ 1.43 +#define USE_SETMODE /* Microsoft has setmode() */ 1.44 +#undef NEED_SIGNAL_CATCHER 1.45 +#undef DONT_USE_B_MODE 1.46 +#undef PROGRESS_REPORT /* optional */ 1.47 + 1.48 +#endif /* JPEG_CJPEG_DJPEG */