summaryrefslogtreecommitdiff
path: root/editors/jove/files/patch-aa
blob: d38b36ae2a23b5555ec8d42d92090157932b2cd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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