diff options
author | Karl Berry <karl@freefriends.org> | 2018-01-15 22:59:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-01-15 22:59:11 +0000 |
commit | 7001aee81ff8c5ab14d5a8acf8f0eca02de01a5a (patch) | |
tree | edd3eb3065fb69a37f7ae1db2b28a706c98b03bc /Build | |
parent | b198b0b1f82978c1347030bf5679b0cf50a48356 (diff) |
#include <ctime> for time_t on FreeBSD 11.1
git-svn-id: svn://tug.org/texlive/trunk@46324 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/libs/poppler/TLpatches/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/poppler/TLpatches/patch-04-ctime | 13 | ||||
-rw-r--r-- | Build/source/libs/poppler/poppler-src/poppler/Form.h | 1 |
3 files changed, 18 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/TLpatches/ChangeLog b/Build/source/libs/poppler/TLpatches/ChangeLog index 3e382943737..b0ba00f7b83 100644 --- a/Build/source/libs/poppler/TLpatches/ChangeLog +++ b/Build/source/libs/poppler/TLpatches/ChangeLog @@ -1,3 +1,7 @@ +2018-01-15 Karl Berry <karl@tug.org> + + * patch-04-ctime: add. + 2018-01-08 Karl Berry <karl@freefriends.org> Imported poppler-0.52.0 source tree from: diff --git a/Build/source/libs/poppler/TLpatches/patch-04-ctime b/Build/source/libs/poppler/TLpatches/patch-04-ctime new file mode 100644 index 00000000000..f59293666a2 --- /dev/null +++ b/Build/source/libs/poppler/TLpatches/patch-04-ctime @@ -0,0 +1,13 @@ + To make time_t work on FreeBSD 11.1, per Mojca. + http://tug.org/pipermail/tlbuild/2018q1/003931.html + +--- Form.h (revision 46316) ++++ Form.h (working copy) +@@ -31,6 +31,7 @@ + + #include <set> + #include <vector> ++#include <ctime> + + class GooString; + class Array; diff --git a/Build/source/libs/poppler/poppler-src/poppler/Form.h b/Build/source/libs/poppler/poppler-src/poppler/Form.h index 8e72334d058..f12590fc0db 100644 --- a/Build/source/libs/poppler/poppler-src/poppler/Form.h +++ b/Build/source/libs/poppler/poppler-src/poppler/Form.h @@ -31,6 +31,7 @@ #include <set> #include <vector> +#include <ctime> class GooString; class Array; |