* 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)
This commit is contained in:
parent
a336ddc1f2
commit
6b3151a9a3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=5461
@ -1,11 +1,27 @@
|
||||
--- Makefile.in.orig Fri Apr 7 05:23:04 1995
|
||||
+++ Makefile.in Sat Jan 25 00:59:00 1997
|
||||
@@ -8,7 +8,7 @@
|
||||
+++ Makefile.in Tue Jan 28 20:59:36 1997
|
||||
@@ -8,9 +8,12 @@
|
||||
#Destination Directory
|
||||
prefix=/usr/local
|
||||
DESTDIR= $(prefix)/bin
|
||||
-LIBDIR= $(prefix)/lib
|
||||
+LIBDIR= $(prefix)/share
|
||||
WPELIBDIR= $(LIBDIR)/wpe
|
||||
-WPELIBDIR= $(LIBDIR)/wpe
|
||||
+LIBSUFX= share
|
||||
+LIBDIR= $(prefix)/$(LIBSUFX)
|
||||
+WPELIBSUFX= $(LIBSUFX)/wpe
|
||||
+WPELIBDIR= $(prefix)/$(WPELIBSUFX)
|
||||
MANDIR= $(prefix)/man
|
||||
+INFO_FILE= $(prefix)/info
|
||||
|
||||
LIBS=@LIBS@
|
||||
DEFS=@DEFS@
|
||||
@@ -104,7 +107,8 @@
|
||||
|
||||
ELIBFLAGS= $(LSYSV) $(LXWINDOW) $(TLIB) $(LPOSIX) $(XWINLIB) $(LNET) $(EXTLIBS)
|
||||
|
||||
-ACFLAGS= $(CFLAGS) $(DEFS) $(ECFLAGS) -D"DESTDIR=\"$(DESTDIR)\""
|
||||
+ACFLAGS= $(CFLAGS) $(DEFS) $(ECFLAGS) -D"DESTDIR=\"$(DESTDIR)\"" \
|
||||
+ -D"WPE_LIB_DIR=\"$(WPELIBSUFX)\"" -D"INFO_FILE=\"$(prefix)/info\""
|
||||
|
||||
LIBFLAGS= $(LIBS) $(ELIBFLAGS)
|
||||
|
||||
|
24
devel/xwpe/files/patch-05
Normal file
24
devel/xwpe/files/patch-05
Normal file
@ -0,0 +1,24 @@
|
||||
--- 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
|
Loading…
Reference in New Issue
Block a user