diff options
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-PATCHES/patch-22-exclude-openTempFile')
-rw-r--r-- | Build/source/libs/xpdf/xpdf-PATCHES/patch-22-exclude-openTempFile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Build/source/libs/xpdf/xpdf-PATCHES/patch-22-exclude-openTempFile b/Build/source/libs/xpdf/xpdf-PATCHES/patch-22-exclude-openTempFile new file mode 100644 index 00000000000..be04bd4042d --- /dev/null +++ b/Build/source/libs/xpdf/xpdf-PATCHES/patch-22-exclude-openTempFile @@ -0,0 +1,34 @@ + Patches for pdfTeX / luaTeX / XeTeX + + from: + Han The Thanh <thanh@pdftex.org> + +diff -ur -N xpdf-3.04.orig/goo/gfile.cc xpdf-3.04/goo/gfile.cc +--- xpdf-3.04.orig/goo/gfile.cc 2014-05-28 20:50:50.000000000 +0200 ++++ xpdf-3.04/goo/gfile.cc 2014-05-30 19:42:41.000000000 +0200 +@@ -7,6 +7,9 @@ + // Copyright 1996-2003 Glyph & Cog, LLC + // + //======================================================================== ++// Modified for TeX Live by Peter Breitenlohner <tex-live@tug.org> ++// See top-level ChangeLog for a list of all modifications ++//======================================================================== + + #include <aconf.h> + +@@ -441,6 +444,7 @@ + #endif + } + ++#ifndef PDF_PARSER_ONLY + GBool openTempFile(GString **name, FILE **f, + const char *mode, const char *ext) { + #if defined(_WIN32) +@@ -551,6 +555,7 @@ + return gTrue; + #endif + } ++#endif + + GBool createDir(char *path, int mode) { + #ifdef _WIN32 |