diff options
author | dsainty <dsainty> | 2011-10-04 23:33:40 +0000 |
---|---|---|
committer | dsainty <dsainty> | 2011-10-04 23:33:40 +0000 |
commit | 33b1c0cac3ac09d1ed434f278d82559226554685 (patch) | |
tree | 9389d36aedbd1943cbf3a483e6df444ff0df47da /emulators/palmosemulator | |
parent | d5f2223ac3116f5978a6f04fca39f48d63784a46 (diff) | |
download | pkgsrc-33b1c0cac3ac09d1ed434f278d82559226554685.tar.gz |
Uncomment a couple of includes that are not strictly implied by other
includes, and therefore may cause build failures when absent.
Fixes build on Ubuntu 11.04.
Diffstat (limited to 'emulators/palmosemulator')
-rw-r--r-- | emulators/palmosemulator/distinfo | 3 | ||||
-rw-r--r-- | emulators/palmosemulator/patches/patch-at | 18 |
2 files changed, 20 insertions, 1 deletions
diff --git a/emulators/palmosemulator/distinfo b/emulators/palmosemulator/distinfo index a1d4a499a5a..d4033ce2ebe 100644 --- a/emulators/palmosemulator/distinfo +++ b/emulators/palmosemulator/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2010/04/06 04:36:00 dsainty Exp $ +$NetBSD: distinfo,v 1.10 2011/10/04 23:33:40 dsainty Exp $ SHA1 (palmosemulator/emulator_src_3.5.tar.gz) = 2debd7690736397d0af41f7b2d482df65391fc65 RMD160 (palmosemulator/emulator_src_3.5.tar.gz) = fbb6761e4c43ecc9fb20d90d2ae0ec6ccf1c3f27 @@ -25,3 +25,4 @@ SHA1 (patch-ap) = 1fe9bf4a1d70230f2abb9375b9e439a3a163b4d7 SHA1 (patch-aq) = f3d3a6bf278f71573fb7d45021305561c3dcc114 SHA1 (patch-ar) = 50562522b9625e034b858439bd409b177f819f85 SHA1 (patch-as) = 63d6db2db9f456193408d5e7407149fe4adf4cfb +SHA1 (patch-at) = 40d36a2031a4b19d250b70ca0d23dc71e3db7c12 diff --git a/emulators/palmosemulator/patches/patch-at b/emulators/palmosemulator/patches/patch-at new file mode 100644 index 00000000000..0949a36ebfa --- /dev/null +++ b/emulators/palmosemulator/patches/patch-at @@ -0,0 +1,18 @@ +$NetBSD: patch-at,v 1.1 2011/10/04 23:33:40 dsainty Exp $ + +Multiple implementation files assume these headers are pulled in implicitly, +so make it explicit, for those platforms that otherwise don't pull these in. + +--- SrcUnix/EmCommonUnix.h.orig 2010-08-08 11:47:00.281465282 +1200 ++++ SrcUnix/EmCommonUnix.h 2010-08-08 11:47:20.822480203 +1200 +@@ -42,8 +42,8 @@ + //#include <stdarg.h> + //#include <stddef.h> + //#include <stdio.h> +-//#include <stdlib.h> +-//#include <string.h> ++#include <stdlib.h> ++#include <string.h> + + //#include <sys/types.h> + //#include <sys/socket.h> |