Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7638 views
1
From: =?utf-8?q?=22Kan-Ru_Chen_=28=E9=99=B3=E4=BE=83=E5=A6=82=29=22?=
2
<[email protected]>
3
Date: Sat, 20 Sep 2014 11:08:32 +0800
4
Subject: fix_libjpeg_header_mismatch
5
6
commit 674a7b563e3010d26faef86d674b246d42c8edf0
7
Author: Quoc-Viet Nguyen <[email protected]>
8
Date: Fri Apr 18 23:25:03 2014 +1000
9
10
Fix header mismatch with libjpeg-dev
11
---
12
scripts/jpeg/jconfig.h | 45 ---------------------------------------------
13
1 file changed, 45 deletions(-)
14
delete mode 100644 scripts/jpeg/jconfig.h
15
16
diff --git a/scripts/jpeg/jconfig.h b/scripts/jpeg/jconfig.h
17
deleted file mode 100644
18
index 679404d..0000000
19
--- a/scripts/jpeg/jconfig.h
20
+++ /dev/null
21
@@ -1,45 +0,0 @@
22
-/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
23
-/* see jconfig.txt for explanations */
24
-
25
-#define HAVE_PROTOTYPES
26
-#define HAVE_UNSIGNED_CHAR
27
-#define HAVE_UNSIGNED_SHORT
28
-/* #define void char */
29
-/* #define const */
30
-#undef CHAR_IS_UNSIGNED
31
-#define HAVE_STDDEF_H
32
-#define HAVE_STDLIB_H
33
-#undef NEED_BSD_STRINGS
34
-#undef NEED_SYS_TYPES_H
35
-#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
36
-#undef NEED_SHORT_EXTERNAL_NAMES
37
-#undef INCOMPLETE_TYPES_BROKEN
38
-
39
-/* Define "boolean" as unsigned char, not int, per Windows custom */
40
-#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
41
-typedef unsigned char boolean;
42
-#endif
43
-#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
44
-
45
-
46
-#ifdef JPEG_INTERNALS
47
-
48
-#undef RIGHT_SHIFT_IS_UNSIGNED
49
-
50
-#endif /* JPEG_INTERNALS */
51
-
52
-#ifdef JPEG_CJPEG_DJPEG
53
-
54
-#define BMP_SUPPORTED /* BMP image file format */
55
-#define GIF_SUPPORTED /* GIF image file format */
56
-#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
57
-#undef RLE_SUPPORTED /* Utah RLE image file format */
58
-#define TARGA_SUPPORTED /* Targa image file format */
59
-
60
-#define TWO_FILE_COMMANDLINE /* optional */
61
-#define USE_SETMODE /* Microsoft has setmode() */
62
-#undef NEED_SIGNAL_CATCHER
63
-#undef DONT_USE_B_MODE
64
-#undef PROGRESS_REPORT /* optional */
65
-
66
-#endif /* JPEG_CJPEG_DJPEG */
67
68