diff options
author | hubertf <hubertf@pkgsrc.org> | 2002-12-09 02:32:55 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2002-12-09 02:32:55 +0000 |
commit | c5e3dd5ed8b9dd9d36b9ee12d84ca7ccae60f619 (patch) | |
tree | 726686cb108b780bef0fb634a3ecc07be223a52a /audio/xsidplay | |
parent | 1fb16f97a60f15a32e2dae52c648435bdc0dc20a (diff) | |
download | pkgsrc-c5e3dd5ed8b9dd9d36b9ee12d84ca7ccae60f619.tar.gz |
NFC how this ever compiled - there is no strnicmp on NetBSD.
#define it to use strncasecmp.
Diffstat (limited to 'audio/xsidplay')
-rw-r--r-- | audio/xsidplay/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/audio/xsidplay/patches/patch-ac b/audio/xsidplay/patches/patch-ac new file mode 100644 index 00000000000..0d9b46bde42 --- /dev/null +++ b/audio/xsidplay/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.5 2002/12/09 02:32:55 hubertf Exp $ + +--- src/tools/TextFile.cpp.orig Wed Oct 11 20:01:40 2000 ++++ src/tools/TextFile.cpp +@@ -27,6 +27,8 @@ + #include <strstream.h> + #endif + ++#define strnicmp strncasecmp /* HF */ ++ + #include <sidplay/compconf.h> + #include <sidplay/fformat.h> // strnicmp stuff + |