From f701bba583424b45ecdc56dae8186fa9fea8f2a0 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 29 Jan 1997 07:22:21 +0000 Subject: * 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) --- devel/xwpe/files/patch-02 | 24 ++++++++++++++++++++---- devel/xwpe/files/patch-05 | 24 ++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 4 deletions(-) create mode 100644 devel/xwpe/files/patch-05 (limited to 'devel') diff --git a/devel/xwpe/files/patch-02 b/devel/xwpe/files/patch-02 index 5b152a4..88495de 100644 --- a/devel/xwpe/files/patch-02 +++ b/devel/xwpe/files/patch-02 @@ -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) diff --git a/devel/xwpe/files/patch-05 b/devel/xwpe/files/patch-05 new file mode 100644 index 0000000..a9fb369 --- /dev/null +++ b/devel/xwpe/files/patch-05 @@ -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 + #include + #include ++#if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__)) ++#include ++#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 -- cgit v1.1