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
|
*** Imakefile.orig Thu Feb 2 18:25:44 1995
--- Imakefile Sun May 30 11:42:08 1999
***************
*** 25,31 ****
XCOMM will define yylineno. If you get an "Undefined symbol: _yylineno"
XCOMM when linking, adjust this to work on your system.
! #if defined(i386BsdArchitecture) || defined(LinuxArchitecture)
# ifdef LexCmd
LEX = LexCmd -l
# else
--- 25,31 ----
XCOMM will define yylineno. If you get an "Undefined symbol: _yylineno"
XCOMM when linking, adjust this to work on your system.
! #if defined(FreeBSDArchitecture) || defined(LinuxArchitecture)
# ifdef LexCmd
LEX = LexCmd -l
# else
***************
*** 100,106 ****
SpecialObjectRule(LocPixmap.o,NullParameter,'-DBITMAPDIR="$(INCDIR)/bitmaps"')
SpecialObjectRule(twm.o,NullParameter,$(TWM_DEFS))
! #if defined(UltrixArchitecture) || defined(AlphaArchitecture)
SpecialObjectRule(menus.o,NullParameter,-Olimit 700)
#endif
--- 100,106 ----
SpecialObjectRule(LocPixmap.o,NullParameter,'-DBITMAPDIR="$(INCDIR)/bitmaps"')
SpecialObjectRule(twm.o,NullParameter,$(TWM_DEFS))
! #if !defined(FreeBSDArchitecture) && (defined(UltrixArchitecture) || defined(AlphaArchitecture))
SpecialObjectRule(menus.o,NullParameter,-Olimit 700)
#endif
***************
*** 120,129 ****
XCOMM ln $(BINDIR)/tvtwm $(BINDIR)/twm
#if (ProjectX < 5)
! InstallNonExec(system.twmrc,$(TWMDIR))
/* InstallProgram(ssetroot,$(BINDIR)/xsetroot) */
#else
! InstallNonExecFile(system.twmrc,$(TWMDIR))
/* InstallNamedProg(ssetroot,xsetroot,$(BINDIR)) */
#endif
--- 120,129 ----
XCOMM ln $(BINDIR)/tvtwm $(BINDIR)/twm
#if (ProjectX < 5)
! /* InstallNonExec(system.twmrc,$(TWMDIR))*/
/* InstallProgram(ssetroot,$(BINDIR)/xsetroot) */
#else
! /* InstallNonExecFile(system.twmrc,$(TWMDIR)) */
/* InstallNamedProg(ssetroot,xsetroot,$(BINDIR)) */
#endif
|