pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/time/cal Do the stricmp dance under IRIX as well.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/29014761e96c
branches:  trunk
changeset: 480313:29014761e96c
user:      jschauma <jschauma%pkgsrc.org@localhost>
date:      Sun Sep 05 20:37:27 2004 +0000

description:
Do the stricmp dance under IRIX as well.
Fix provided by Georg Schwarz in PR pkg/26851.

diffstat:

 time/cal/distinfo         |  4 ++--
 time/cal/patches/patch-ab |  8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (35 lines):

diff -r f0ee6ec6fe08 -r 29014761e96c time/cal/distinfo
--- a/time/cal/distinfo Sun Sep 05 18:44:56 2004 +0000
+++ b/time/cal/distinfo Sun Sep 05 20:37:27 2004 +0000
@@ -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 -r f0ee6ec6fe08 -r 29014761e96c time/cal/patches/patch-ab
--- a/time/cal/patches/patch-ab Sun Sep 05 18:44:56 2004 +0000
+++ b/time/cal/patches/patch-ab Sun Sep 05 20:37:27 2004 +0000
@@ -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 @@
  /* 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
 + 



Home | Main Index | Thread Index | Old Index