summaryrefslogtreecommitdiff
path: root/wm/olvwm/patches/patch-ah
blob: 9192281031445263841db38f6d152d1b15f59149 (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
35
36
37
38
39
40
41
42
43
44
45
46
$NetBSD: patch-ah,v 1.2 2006/01/19 23:15:59 joerg Exp $

--- virtual.c.orig	2000-03-02 21:41:11.000000000 +0000
+++ virtual.c
@@ -4,6 +4,7 @@
  */
 
 #include <sys/types.h>
+#include <limits.h>
 #include <stdio.h>
 #include <string.h>
 #include <dirent.h>
@@ -69,6 +70,9 @@ extern Button	*MakeUpLeftButton(),*MakeL
 
 extern char	*ExpandPath();
 
+static int	rexMatch();
+static int	rexInit();
+
 /*
  * Semantic action associated with each of the buttons above.  These must
  * be in the same order as the button array; it would be better if the Button
@@ -1982,8 +1986,13 @@ struct _menu	*menu;
 DIR	*dir;
 struct dirent	*ent;
 Button	*b;
+#if defined(NAME_MAX)
+char	s[NAME_MAX], dirname[MAXPATHLEN - NAME_MAX], *newname, *ExpandPath();
+char	pattern[NAME_MAX];
+#else
 char	s[MAXNAMLEN], dirname[MAXPATHLEN - MAXNAMLEN], *newname, *ExpandPath();
 char	pattern[MAXNAMLEN];
+#endif
 extern int AppMenuFunc();
 MenuCache	*menuCache;
 int		slot;
@@ -2108,7 +2117,9 @@ int val;
     }
 }
 
+#ifndef REGEXP
 static char expbuf[256];
+#endif
 
 static
 rexMatch(string)