istereo

diff libs/libjpeg/jconfig.h @ 26:862a3329a8f0

wohooo, added a shitload of code from zlib/libpng/libjpeg. When the good lord was raining shared libraries the iphone held a fucking umbrella...
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 08 Sep 2011 06:28:38 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libs/libjpeg/jconfig.h	Thu Sep 08 06:28:38 2011 +0300
     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 */