diff options
author | dholland <dholland> | 2012-12-17 03:37:20 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-12-17 03:37:20 +0000 |
commit | 34364d7a95d45ec7013256621313a4e25d449697 (patch) | |
tree | 67d250b52af559f92de911130d012b5770682907 /emulators/zsnes | |
parent | d65f58b1c65b71d439d9a4d861d81e483a74da8f (diff) | |
download | pkgsrc-34364d7a95d45ec7013256621313a4e25d449697.tar.gz |
Add <cstring> to hopefully fix build.
Diffstat (limited to 'emulators/zsnes')
-rw-r--r-- | emulators/zsnes/distinfo | 3 | ||||
-rw-r--r-- | emulators/zsnes/patches/patch-tools_strutil.h | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/emulators/zsnes/distinfo b/emulators/zsnes/distinfo index d7e9b125fc8..362e95aa336 100644 --- a/emulators/zsnes/distinfo +++ b/emulators/zsnes/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.15 2011/03/15 11:46:09 obache Exp $ +$NetBSD: distinfo,v 1.16 2012/12/17 03:37:20 dholland Exp $ SHA1 (zsnes151src.tar.bz2) = 03df35490870c9950d7010747d0546c8525c0362 RMD160 (zsnes151src.tar.bz2) = 337407bf7e5516bcd7bf310c7b17d6d12a948750 @@ -10,4 +10,5 @@ SHA1 (patch-ad) = 6244778c7f5c3c5d8c4f040760f8243161ae886d SHA1 (patch-ae) = 81236ed52fe7095f6317f655374234ce17cf30dd SHA1 (patch-af) = f223476d4ef39a9fe9d60b827fc7c7e2d77f26ee SHA1 (patch-makefilein) = d75b9b99888106bfbc7c5d12b311527103ceaccd +SHA1 (patch-tools_strutil.h) = 18302bd76b325b2654a354282e3bf9ab8e9d8a0c SHA1 (patch-zip_zpng.c) = bee7b0635afa9f22a05910b86c4f742296e1f78f diff --git a/emulators/zsnes/patches/patch-tools_strutil.h b/emulators/zsnes/patches/patch-tools_strutil.h new file mode 100644 index 00000000000..1ef34d8e555 --- /dev/null +++ b/emulators/zsnes/patches/patch-tools_strutil.h @@ -0,0 +1,14 @@ +$NetBSD: patch-tools_strutil.h,v 1.1 2012/12/17 03:37:20 dholland Exp $ + +add <cstring> for strcasecmp. + +--- tools/strutil.h~ 2006-12-27 11:04:05.000000000 +0000 ++++ tools/strutil.h +@@ -23,6 +23,7 @@ This is part of a toolkit used to assist + #define STRUTIL_H + + #include <string> ++#include <cstring> + #include <vector> + #include <cctype> + |