1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/devel/xwpe/files/patch-05
David E. O'Brien 6b3151a9a3 * Debugger really didn't work under X11 -- needed to use mkfifo rather than
mknod for non-root users.

* Made termios patches more portable.

* Help file pathing not quite right.

* Make ALT-blah-Keys go well under X11.
	Submitted by:	root@mc5sys.in-berlin.de (Frank Gruender)
1997-01-29 07:22:21 +00:00

25 lines
812 B
Plaintext

--- we_prog.c.orig Fri Apr 7 05:32:42 1995
+++ we_prog.c Mon Jan 27 04:16:00 1997
@@ -22,6 +22,9 @@
#include <sys/stat.h>
#include <sys/wait.h>
#include <signal.h>
+#if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__))
+#include <sys/param.h>
+#endif
#define NSTR ""
@@ -1120,7 +1123,11 @@
e_prog.project = e_make_string(e_prog.project, "project.prj");
e_prog.exedir = e_make_string(e_prog.exedir, ".");
e_prog.sys_include = e_make_string(e_prog.sys_include,
+#if (defined(BSD) && (BSD >= 199306) && defined(__i386__))
+ "/usr/include:/usr/X11R6/include:/usr/local/include");
+#else
"/usr/include:/usr/5include:/usr/include/X11");
+#endif
if(e_prog.comp == NULL)
e_prog.comp = MALLOC(e_prog.num * sizeof(struct e_s_prog *));
else