diff options
author | ats <ats@FreeBSD.org> | 1994-11-21 05:48:00 +0800 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1994-11-21 05:48:00 +0800 |
commit | c8fad0244d27a580f48e49b5297c92016e0c9d2a (patch) | |
tree | 4672cd129f5e2f0791649e5e80d024fe13da730b /editors/jove | |
parent | 4d91b48036dec73606483de015594caabe089730 (diff) | |
download | freebsd-ports-gnome-c8fad0244d27a580f48e49b5297c92016e0c9d2a.tar.gz freebsd-ports-gnome-c8fad0244d27a580f48e49b5297c92016e0c9d2a.tar.zst freebsd-ports-gnome-c8fad0244d27a580f48e49b5297c92016e0c9d2a.zip |
Add a patch file to generate a correct Makefile for jove and comment
out the function ntohl in macvert.c.
Diffstat (limited to 'editors/jove')
-rw-r--r-- | editors/jove/files/patch-aa | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/editors/jove/files/patch-aa b/editors/jove/files/patch-aa new file mode 100644 index 000000000000..d38b36ae2a23 --- /dev/null +++ b/editors/jove/files/patch-aa @@ -0,0 +1,97 @@ +*** Makefile.freebsd Sat Jun 19 07:44:14 1993 +--- Makefile Sun Nov 20 22:30:22 1994 +*************** +*** 30,36 **** + TMPDIR = /tmp + RECDIR = /usr/preserve + +! JOVEHOME = /local + SHAREDIR = $(JOVEHOME)/lib/jove + LIBDIR = $(JOVEHOME)/lib/jove + BINDIR = $(JOVEHOME)/bin +--- 30,36 ---- + TMPDIR = /tmp + RECDIR = /usr/preserve + +! JOVEHOME = /usr/local + SHAREDIR = $(JOVEHOME)/lib/jove + LIBDIR = $(JOVEHOME)/lib/jove + BINDIR = $(JOVEHOME)/bin +*************** +*** 39,49 **** + DFLTSHELL = /bin/csh + + # to install executable files +! XINSTALL=cp +! #XINSTALL=install -c -m 755 # -s + # to install text files +! TINSTALL=cp +! #TINSTALL=install -c -m 644 + + PROG = jove + VERSION = 4.14 +--- 39,49 ---- + DFLTSHELL = /bin/csh + + # to install executable files +! # XINSTALL=cp +! XINSTALL=install -c -m 755 # -s + # to install text files +! # TINSTALL=cp +! TINSTALL=install -c -m 644 + + PROG = jove + VERSION = 4.14 +*************** +*** 62,68 **** + # Select optimization level (flags passed to compiling and linking steps). + # On most systems, -g for debugging, -O for optimization. + +! OPTFLAGS = -g + + # Select the right libraries for your system. + # 2.10BSD:LIBS = -ltermcap +--- 62,68 ---- + # Select optimization level (flags passed to compiling and linking steps). + # On most systems, -g for debugging, -O for optimization. + +! OPTFLAGS = -O + + # Select the right libraries for your system. + # 2.10BSD:LIBS = -ltermcap +*************** +*** 121,127 **** + # + # You can just say 'make SYSDEFS=-Dwhatever' on these systems. + +! SYSDEFS = + + # for SCO Xenix, set + # MEMFLAGS = -Mle +--- 121,127 ---- + # + # You can just say 'make SYSDEFS=-Dwhatever' on these systems. + +! SYSDEFS = -DBSDPOSIX + + # for SCO Xenix, set + # MEMFLAGS = -Mle +*** macvert.c.ORIG Sun Apr 18 23:05:23 1993 +--- macvert.c Sun Nov 20 22:37:15 1994 +*************** +*** 56,67 **** +--- 56,69 ---- + + #else + ++ #ifndef __FreeBSD__ + static long + ntohl(x) + register long x; + { + return x; + } ++ #endif /* __FreeBSD__ */ + + #endif + |