diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-06-18 11:37:05 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-06-18 11:37:05 +0000 |
commit | b1882a1ef3ebf5ab4a1dc8010655c8d5def03b61 (patch) | |
tree | cb9161a5ae062e1fb48641a2a71f8dff00337ecb /Build/source/libs/xpdf/xpdf-3.04-PATCHES/patch-30-include-strings_h | |
parent | 384d961843d060a692d21c4ea38f266171650f91 (diff) |
xpdf 3.04
git-svn-id: svn://tug.org/texlive/trunk@34281 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-3.04-PATCHES/patch-30-include-strings_h')
-rw-r--r-- | Build/source/libs/xpdf/xpdf-3.04-PATCHES/patch-30-include-strings_h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Build/source/libs/xpdf/xpdf-3.04-PATCHES/patch-30-include-strings_h b/Build/source/libs/xpdf/xpdf-3.04-PATCHES/patch-30-include-strings_h new file mode 100644 index 00000000000..f9b694650b1 --- /dev/null +++ b/Build/source/libs/xpdf/xpdf-3.04-PATCHES/patch-30-include-strings_h @@ -0,0 +1,15 @@ + The Posix manpage says strcasecmp() is declared in <strings.h> + and this indeed required for AIX 4.3 and xlc. + +diff -ur -N xpdf-3.04.orig/xpdf/GlobalParams.cc xpdf-3.04/xpdf/GlobalParams.cc +--- xpdf-3.04.orig/xpdf/GlobalParams.cc 2014-05-30 19:29:23.000000000 +0200 ++++ xpdf-3.04/xpdf/GlobalParams.cc 2014-05-30 19:47:44.000000000 +0200 +@@ -54,6 +54,8 @@ + #ifdef _WIN32 + # define strcasecmp stricmp + # define strncasecmp strnicmp ++#else ++# include <strings.h> + #endif + + #if MULTITHREADED |