30 lines
660 B
Diff
30 lines
660 B
Diff
--- source/fitz/load-jpx.c.orig
|
|
+++ source/fitz/load-jpx.c
|
|
@@ -484,12 +484,17 @@
|
|
/* 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
|
|
@@ -971,4 +976,7 @@
|
|
fz_drop_pixmap(ctx, img);
|
|
}
|
|
|
|
+#ifdef __cplusplus
|
|
+}
|
|
+#endif
|
|
#endif /* HAVE_LURATECH */
|