summaryrefslogtreecommitdiff
path: root/time/cal/patches/patch-ab
blob: cb044d4f68a6c91065554d1e8e893c38dd0dd15f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
$NetBSD: patch-ab,v 1.4 2004/09/05 20:37:27 jschauma Exp $

--- 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>
 #include <sys/types.h>
+#include <sys/param.h>      /*NetBSD*/
  
 #ifndef max
 #define max(a,b) (((a)>(b))?(a):(b))
@@ -130,6 +131,10 @@
 /* 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) || defined(__sgi)
+#define stricmp(a,b) strcasecmp(a,b) /* case-insensitive string comparison */
+#endif
+ 
 #ifdef __linux__          /* Make linux compatible with stricmp() */
 #define stricmp(a,b) strcasecmp(a,b) /* case-insensitive string comparison */
 #endif
@@ -1401,8 +1406,8 @@
             strcpy(str, ".");
             strcpy(str, file);
             if ((fp = fopen(str, mode)) == NULL) {
-                /* If still not found then look in a lib directory */
-                strcpy(str, "/usr/lib/");
+                /* If still not found then look in config directory */
+                strcpy(str, PKG_SYSCONFDIR "/");
                 strcat(str,file);
                 fp = fopen(str, mode);
             }