summaryrefslogtreecommitdiff
path: root/devel/xwpe/files
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2002-07-13 17:53:44 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2002-07-13 17:53:44 +0000
commite0ba684a1bff4e05bb41e7c1c08b0f54cfa69ca0 (patch)
tree07f61fcd0cd1367906fc595ffce659f280a8318f /devel/xwpe/files
parent- GNU_CONFIGURE -> USE_LIBTOOL (diff)
upgrade to 1.5.29a
PR: 40493 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=62899
Diffstat (limited to 'devel/xwpe/files')
-rw-r--r--devel/xwpe/files/patch-0929
1 files changed, 14 insertions, 15 deletions
diff --git a/devel/xwpe/files/patch-09 b/devel/xwpe/files/patch-09
index cbfcb0c09d28..47bc8a4e0a37 100644
--- a/devel/xwpe/files/patch-09
+++ b/devel/xwpe/files/patch-09
@@ -1,5 +1,5 @@
---- we_fl_unix.c.orig Mon Dec 27 08:11:38 1999
-+++ we_fl_unix.c Sat Feb 26 05:55:53 2000
+--- we_fl_unix.c.orig Wed Jun 5 11:53:50 2002
++++ we_fl_unix.c Fri Jul 12 02:37:37 2002
@@ -13,6 +13,10 @@
#include <sys/stat.h>
#include <errno.h>
@@ -10,19 +10,18 @@
+
struct dirfile *e_make_win_list(FENSTER * f);
extern char *e_tmp_dir;
- extern int (*e_u_system) (char *exe);
-@@ -3546,7 +3550,13 @@
- if(getenv("MANPATH"))
- strcpy(manpath, getenv("MANPATH"));
- if(manpath[0] == '\0')
-- strcpy(manpath, "/usr/man:/usr/local/man");
-+ strcpy(manpath,
+
+@@ -3532,7 +3536,12 @@
+ }
+ if ((!manpath) || (manpath[0] == '\0'))
+ {
+- manpath = strdup("/usr/man:/usr/share/man:/usr/X11R6/man:/usr/local/man");
++ manpath = strdup(
+#if (defined(BSD) && (BSD >= 199306)) || (defined(sun) && defined(__svr4__))
-+ "/usr/share/man:%%LOCALBASE%%/man");
++ "/usr/share/man:%%X11BASE%%/man:%%LOCALBASE%%/man");
+#else
-+ "/usr/man:/usr/local/man");
++ "/usr/man:%%X11BASE%%/man:%%LOCALBASE%%/man");
+#endif
-+
- while(manpath[i])
- {
- for(n = 0; (subpath[n] = manpath[i]) && manpath[i] != PTHD; i++, n++);
+ }
+ /* Allocate the maximum possible rather than continually realloc. */
+ sustr = malloc(strlen(manpath) + 10);