diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-03-20 21:34:40 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-03-20 21:34:40 +0000 |
commit | 7a4c5e29babb5b966236cc8d7a5d0a7d9e8b97b8 (patch) | |
tree | 7fd9583372f2bdb1f219f748f15ebbbf92a8b5f1 /Build/source/libs/poppler/TLpatches | |
parent | ca97bb4c7a45ea2cb09ddb2940b22999de00cf2c (diff) |
improve the patch for windows, thanks to Luigi
git-svn-id: svn://tug.org/texlive/trunk@47042 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/TLpatches')
-rw-r--r-- | Build/source/libs/poppler/TLpatches/patch-05-w32 | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/Build/source/libs/poppler/TLpatches/patch-05-w32 b/Build/source/libs/poppler/TLpatches/patch-05-w32 index 8c77eea5599..0647e19470f 100644 --- a/Build/source/libs/poppler/TLpatches/patch-05-w32 +++ b/Build/source/libs/poppler/TLpatches/patch-05-w32 @@ -1,19 +1,18 @@ diff -ur poppler-0.63.0/goo/gfile.cc poppler-src/goo/gfile.cc --- poppler-0.63.0/goo/gfile.cc Mon Mar 19 03:23:49 2018 -+++ poppler-src/goo/gfile.cc Wed Mar 21 05:50:42 2018 -@@ -65,6 +65,7 @@ - #define PATH_MAX 1024 - #endif ++++ poppler-src/goo/gfile.cc Wed Mar 21 06:24:52 2018 +@@ -80,7 +80,14 @@ + struct StatMtim + { + static const struct timespec& value(const Stat& stbuf) { ++#if defined(_WIN32) ++ static struct timespec t_spec; ++ t_spec.tv_sec=stbuf.st_mtime; ++ t_spec.tv_nsec=0; ++ return t_spec; ++#else + return stbuf.st_mtim; ++#endif + } + }; -+#if !defined(_WIN32) - namespace { - - template< typename... > -@@ -99,6 +100,7 @@ - - } - -+#endif /* !_WIN32 */ - //------------------------------------------------------------------------ - - GooString *getCurrentDir() { |