blob: a56d3b1d969238318051833ab6fae4ad59df9978 (
plain)
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
|
*** Makefile.orig Sat Jan 25 07:43:10 1997
--- Makefile Mon Jan 27 23:17:17 1997
***************
*** 14,31 ****
##change the next line if you want lynx installed somewhere
##besides /usr/local/bin
! exec= /usr/local/bin
##change the next line if you want the lynx man file installed somewhere
##besides /usr/local/man/man1
! doc= /usr/local/man/man1
##change the next line if you want the lynx.cfg file installed somewhere
##besides /usr/local/lib
! cfg= /usr/local/lib
! installbin= install -c -s -m 555
! installdoc= install -c -m 444
##set the relative location of the WWW library Implementation directory,
##from this directory
--- 14,31 ----
##change the next line if you want lynx installed somewhere
##besides /usr/local/bin
! exec= ${PREFIX}/bin
##change the next line if you want the lynx man file installed somewhere
##besides /usr/local/man/man1
! doc= ${PREFIX}/man/man1
##change the next line if you want the lynx.cfg file installed somewhere
##besides /usr/local/lib
! cfg= ${PREFIX}/etc
! installbin= ${INSTALL} -c -s -m ${BINMODE} -o ${BINOWN} -g ${BINGRP}
! installdoc= ${INSTALL} -c -m 444 -o ${BINOWN} -g ${BINGRP}
##set the relative location of the WWW library Implementation directory,
##from this directory
***************
*** 268,274 ****
SITE_LYDEFS = $(DIR_LYDEFS) # Your defines here
# Set SITE_DEFS to one or more of the defines for lynx below:
! SITE_DEFS = $(DIR_DEFS) # Your defines here
# if you are compiling on a previously unsupported system, modify
# this generic entry!!
--- 268,274 ----
SITE_LYDEFS = $(DIR_LYDEFS) # Your defines here
# Set SITE_DEFS to one or more of the defines for lynx below:
! SITE_DEFS = $(DIR_DEFS) -DLYNX_CFG_FILE='\"${PREFIX}/etc/lynx.cfg\"'
# if you are compiling on a previously unsupported system, modify
# this generic entry!!
***************
*** 406,412 ****
# FreeBSD doesn't have or need ranlib. (ignore the error message about that :)
freebsd-ncurses:
cd WWW/Library/freebsd; $(MAKE) LYFLAGS="$(SITE_LYDEFS)"
! cd src; $(MAKE) all MCFLAGS="$(CFLAGS) -DFANCY_CURSES -DNCURSES -DUNIX \
-DNO_TTYTYPE -DNO_CUSERID -DLOCALE \
-I../$(WWWINC) $(SITE_DEFS)" \
LIBS="-lncurses -lmytinfo \
--- 406,412 ----
# FreeBSD doesn't have or need ranlib. (ignore the error message about that :)
freebsd-ncurses:
cd WWW/Library/freebsd; $(MAKE) LYFLAGS="$(SITE_LYDEFS)"
! cd src; $(MAKE) all MCFLAGS="$(CFLAGS) -DFANCY_CURSES -DNCURSES -DNCURSESHEADER -DUNIX \
-DNO_TTYTYPE -DNO_CUSERID -DLOCALE \
-I../$(WWWINC) $(SITE_DEFS)" \
LIBS="-lncurses -lmytinfo \
|