diff options
author | tnn <tnn@pkgsrc.org> | 2020-03-22 18:09:10 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2020-03-22 18:09:10 +0000 |
commit | 77261ad460440c69de12f6fbac0c9c50de42f28b (patch) | |
tree | 04c0a7868cb58ea656f954ce7566d5e5c79bc136 /games/exult | |
parent | 508e35b1e8a1ed72fbbe521f80228841774c3182 (diff) | |
download | pkgsrc-77261ad460440c69de12f6fbac0c9c50de42f28b.tar.gz |
exult: include <cstddef> for ptrdiff_t
Diffstat (limited to 'games/exult')
-rw-r--r-- | games/exult/distinfo | 4 | ||||
-rw-r--r-- | games/exult/patches/patch-files_U7obj.h | 14 | ||||
-rw-r--r-- | games/exult/patches/patch-files_databuf.h | 14 |
3 files changed, 31 insertions, 1 deletions
diff --git a/games/exult/distinfo b/games/exult/distinfo index 8977297dac5..b8153c1ad21 100644 --- a/games/exult/distinfo +++ b/games/exult/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2016/10/16 17:10:49 bsiegert Exp $ +$NetBSD: distinfo,v 1.13 2020/03/22 18:09:10 tnn Exp $ SHA1 (exult-1.4.9rc1.tar.gz) = 259f778d6b8b5e9c9466e2f4967b6352435b6792 RMD160 (exult-1.4.9rc1.tar.gz) = 8c6fce2bc17ff59709c5827c5dd70f2e2a473914 @@ -6,6 +6,8 @@ SHA512 (exult-1.4.9rc1.tar.gz) = 0da559ce574a07eba597b44e6ed6ddd72d3db45dfa8f546 Size (exult-1.4.9rc1.tar.gz) = 5452640 bytes SHA1 (patch-audio_midi__drivers_forked__player.cc) = 058c77900828cc75643237e5ddbc1d21e67a2337 SHA1 (patch-configure) = 0812526182ffa1746c45fd5a005ca8b10fd50093 +SHA1 (patch-files_U7obj.h) = fc17761779f99f2c2f8e5fa631601db61bb7b78c +SHA1 (patch-files_databuf.h) = 2a11ad1820ed14ead54bb66d52855d594cf28c5c SHA1 (patch-imagewin_manip.h) = d9a90c7fbe046a4079618aeda4c428ef1672525e SHA1 (patch-istring.h) = 18e8b49932f7317e6c978c585e1dfe855ac05a51 SHA1 (patch-usecode_compiler_ucstmt.cc) = 8aadf06c18f347d7de437709e44da86a0783bb1f diff --git a/games/exult/patches/patch-files_U7obj.h b/games/exult/patches/patch-files_U7obj.h new file mode 100644 index 00000000000..52789e79a24 --- /dev/null +++ b/games/exult/patches/patch-files_U7obj.h @@ -0,0 +1,14 @@ +$NetBSD: patch-files_U7obj.h,v 1.1 2020/03/22 18:09:10 tnn Exp $ + +include <cstddef> for ptrdiff_t + +--- files/U7obj.h.orig 2010-02-25 02:52:07.000000000 +0000 ++++ files/U7obj.h +@@ -25,6 +25,7 @@ + + #include <string> + #include <vector> ++#include <cstddef> + #include <cstring> + #include "common_types.h" + #include "utils.h" diff --git a/games/exult/patches/patch-files_databuf.h b/games/exult/patches/patch-files_databuf.h new file mode 100644 index 00000000000..c3ec5be71e7 --- /dev/null +++ b/games/exult/patches/patch-files_databuf.h @@ -0,0 +1,14 @@ +$NetBSD: patch-files_databuf.h,v 1.1 2020/03/22 18:09:10 tnn Exp $ + +include <cstddef> for ptrdiff_t + +--- files/databuf.h.orig 2010-03-10 04:07:05.000000000 +0000 ++++ files/databuf.h +@@ -20,6 +20,7 @@ + #include <cstdio> + #include <cstring> + #include <cassert> ++#include <cstddef> + #include <fstream> + #include <string> + #include <iomanip> |