aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/jpeg-6b/jconfig.cfg
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2012-01-31 16:21:06 -0800
committerVladimir Chtchetkine <vchtchetkine@google.com>2012-02-01 07:03:32 -0800
commit70a18cd874a22452aca9e39e22275ed4538ed20b (patch)
treef67e6501f8d1195147a57a93230ed61fe7525b2a /distrib/jpeg-6b/jconfig.cfg
parent34f234393256163101b05c41ee4676bc68b57c65 (diff)
downloadexternal_qemu-70a18cd874a22452aca9e39e22275ed4538ed20b.zip
external_qemu-70a18cd874a22452aca9e39e22275ed4538ed20b.tar.gz
external_qemu-70a18cd874a22452aca9e39e22275ed4538ed20b.tar.bz2
Include JPEG compression / decompression library into emulator build
We are going to need JPEG compression for transferring emulator's framebuffers to the multi-touch supporting application running on an android device. The source for JPEG compressor has been copied over from external/jpeg To that I've added distrib/jpeg-6b/sources.make containing build instruction for JPEG compressor. That file gets included into Makefile.common to compile JPEG compressor sources along with the emulator sources. Change-Id: I7bfccb7a10f873f90edabab5d3b1b2ca4dd57449
Diffstat (limited to 'distrib/jpeg-6b/jconfig.cfg')
-rw-r--r--distrib/jpeg-6b/jconfig.cfg44
1 files changed, 44 insertions, 0 deletions
diff --git a/distrib/jpeg-6b/jconfig.cfg b/distrib/jpeg-6b/jconfig.cfg
new file mode 100644
index 0000000..36a04fa
--- /dev/null
+++ b/distrib/jpeg-6b/jconfig.cfg
@@ -0,0 +1,44 @@
+/* jconfig.cfg --- source file edited by configure script */
+/* see jconfig.doc for explanations */
+
+#undef HAVE_PROTOTYPES
+#undef HAVE_UNSIGNED_CHAR
+#undef HAVE_UNSIGNED_SHORT
+#undef void
+#undef const
+#undef CHAR_IS_UNSIGNED
+#undef HAVE_STDDEF_H
+#undef HAVE_STDLIB_H
+#undef NEED_BSD_STRINGS
+#undef NEED_SYS_TYPES_H
+#undef NEED_FAR_POINTERS
+#undef NEED_SHORT_EXTERNAL_NAMES
+/* Define this if you get warnings about undefined structures. */
+#undef INCOMPLETE_TYPES_BROKEN
+
+#ifdef JPEG_INTERNALS
+
+#undef RIGHT_SHIFT_IS_UNSIGNED
+#undef INLINE
+/* These are for configuring the JPEG memory manager. */
+#undef DEFAULT_MAX_MEM
+#undef NO_MKTEMP
+
+#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 */
+
+#undef TWO_FILE_COMMANDLINE
+#undef NEED_SIGNAL_CATCHER
+#undef DONT_USE_B_MODE
+
+/* Define this if you want percent-done progress reports from cjpeg/djpeg. */
+#undef PROGRESS_REPORT
+
+#endif /* JPEG_CJPEG_DJPEG */