summarylogtreecommitdiffstats
path: root/0001-mupdf-openjpeg.patch
blob: b41e3477907e00285633d9f217eea63692f25e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- a/source/fitz/load-jpx.c                                                                                                                                                                                        
+++ b/source/fitz/load-jpx.c
@@ -484,13 +484,18 @@
 /* Without the definition of OPJ_STATIC, compilation fails on windows
  * due to the use of __stdcall. We believe it is required on some
  * linux toolchains too. */
+
+#ifdef __cplusplus
+extern "C"
+{
 #define OPJ_STATIC
 #ifndef _MSC_VER
 #define OPJ_HAVE_STDINT_H
 #endif
+#endif
 
-#include <openjpeg.h>
-
+#include <openjpeg-2.1/openjpeg.h>
+    
 /* OpenJPEG does not provide a safe mechanism to intercept
  * allocations. In the latest version all allocations go
  * though opj_malloc etc, but no context is passed around.
@@ -972,3 +977,7 @@
 }
 
 #endif /* HAVE_LURATECH */
+
+#ifdef __cplusplus                                                                                                                                                                                                 
+}                                                                                                                                                                                                                  
+#endif