diff options
author | jschauma <jschauma> | 2004-09-05 20:37:27 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2004-09-05 20:37:27 +0000 |
commit | b86e30841153908c2bf6a4f158ce3f1915410408 (patch) | |
tree | eef187f57286601d2a8693d4f0df7eca50059bfc /time | |
parent | 69f77cc96101e92df4f824b8a655ad065b76adb0 (diff) | |
download | pkgsrc-b86e30841153908c2bf6a4f158ce3f1915410408.tar.gz |
Do the stricmp dance under IRIX as well.
Fix provided by Georg Schwarz in PR pkg/26851.
Diffstat (limited to 'time')
-rw-r--r-- | time/cal/distinfo | 4 | ||||
-rw-r--r-- | time/cal/patches/patch-ab | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/time/cal/distinfo b/time/cal/distinfo index 1788835ee20..fdf0511ce08 100644 --- a/time/cal/distinfo +++ b/time/cal/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2003/09/24 10:53:36 jmmv Exp $ +$NetBSD: distinfo,v 1.5 2004/09/05 20:37:27 jschauma Exp $ SHA1 (cal-3.5.tar.gz) = 4be982ce4576db6e2db8f8006b7bffa016d6af9d Size (cal-3.5.tar.gz) = 47645 bytes SHA1 (patch-aa) = 59faa366d366cf9ed265c7f0664b5d09e1c671d1 -SHA1 (patch-ab) = 70aaa0364c87cd5d73a2f5a40fce8d791c3f83fc +SHA1 (patch-ab) = d9e07d4b758269c1f586cc7b2dea3e33dbdbce05 diff --git a/time/cal/patches/patch-ab b/time/cal/patches/patch-ab index c7451d70a9d..cb044d4f68a 100644 --- a/time/cal/patches/patch-ab +++ b/time/cal/patches/patch-ab @@ -1,7 +1,7 @@ -$NetBSD: patch-ab,v 1.3 2003/09/24 10:53:36 jmmv Exp $ +$NetBSD: patch-ab,v 1.4 2004/09/05 20:37:27 jschauma Exp $ ---- cal.c.orig Thu Jul 11 20:36:33 1996 -+++ cal.c Wed Sep 24 11:30:56 2003 +--- cal.c.orig 1996-07-11 15:36:33.000000000 -0400 ++++ cal.c 2004-09-05 13:52:11.000000000 -0400 @@ -122,6 +122,7 @@ #include <ctype.h> #include <string.h> @@ -14,7 +14,7 @@ $NetBSD: patch-ab,v 1.3 2003/09/24 10:53:36 jmmv Exp $ /* Note: Other unix systems may require this next re-define to work. */ /* I believe that SCO is one such system. Please send in any fixes */ /* needed to get your system running. */ -+#if (defined(BSD) && BSD >= 199306) || defined (sun) ++#if (defined(BSD) && BSD >= 199306) || defined (sun) || defined(__sgi) +#define stricmp(a,b) strcasecmp(a,b) /* case-insensitive string comparison */ +#endif + |