diff options
author | asau <asau> | 2012-06-19 20:29:34 +0000 |
---|---|---|
committer | asau <asau> | 2012-06-19 20:29:34 +0000 |
commit | 8202f3878b0b07831db269ccdeeb3725a897a713 (patch) | |
tree | 40dba30bf473199837f5540265a1ef22e19b1ccf /emulators | |
parent | 748442ae0615497b1eaded80436b78cf3f4d7637 (diff) | |
download | pkgsrc-8202f3878b0b07831db269ccdeeb3725a897a713.tar.gz |
Include limits.h to define PATH_MAX.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/palmosemulator/distinfo | 3 | ||||
-rw-r--r-- | emulators/palmosemulator/patches/patch-SrcUnix_EmDlgFltk.cpp | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/emulators/palmosemulator/distinfo b/emulators/palmosemulator/distinfo index d4033ce2ebe..369472b9515 100644 --- a/emulators/palmosemulator/distinfo +++ b/emulators/palmosemulator/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2011/10/04 23:33:40 dsainty Exp $ +$NetBSD: distinfo,v 1.11 2012/06/19 20:29:34 asau Exp $ SHA1 (palmosemulator/emulator_src_3.5.tar.gz) = 2debd7690736397d0af41f7b2d482df65391fc65 RMD160 (palmosemulator/emulator_src_3.5.tar.gz) = fbb6761e4c43ecc9fb20d90d2ae0ec6ccf1c3f27 @@ -6,6 +6,7 @@ Size (palmosemulator/emulator_src_3.5.tar.gz) = 3162363 bytes SHA1 (palmosemulator/emulator-skins-19.tar.gz) = 70b0497061d6877a4e3c6a378fa647c64fe3e019 RMD160 (palmosemulator/emulator-skins-19.tar.gz) = 9b4e16f50b1d2b9ad9b17e3a104c34a983d0a4ba Size (palmosemulator/emulator-skins-19.tar.gz) = 2443913 bytes +SHA1 (patch-SrcUnix_EmDlgFltk.cpp) = 2b8582982dc02dfaa298f20ba342eebd58098207 SHA1 (patch-aa) = eef35ce5c3d91bf56903bb48c0c78bd333591fcc SHA1 (patch-ab) = 061379a827d338e411e8ea53dc071cb668a6c524 SHA1 (patch-ac) = c00a821d390ab92b28a01a47e7934eed4261fe6f diff --git a/emulators/palmosemulator/patches/patch-SrcUnix_EmDlgFltk.cpp b/emulators/palmosemulator/patches/patch-SrcUnix_EmDlgFltk.cpp new file mode 100644 index 00000000000..217608b3003 --- /dev/null +++ b/emulators/palmosemulator/patches/patch-SrcUnix_EmDlgFltk.cpp @@ -0,0 +1,15 @@ +$NetBSD: patch-SrcUnix_EmDlgFltk.cpp,v 1.1 2012/06/19 20:29:35 asau Exp $ + +Define PATH_MAX. + +--- SrcUnix/EmDlgFltk.cpp.orig 2002-03-29 13:11:19.000000000 +0000 ++++ SrcUnix/EmDlgFltk.cpp +@@ -11,6 +11,8 @@ + (at your option) any later version. + \* ===================================================================== */ + ++#include <limits.h> ++ + #include "EmCommon.h" + #include "EmDlgFltk.h" + |