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 Nov 14 19:52:37 1996
+++ Imakefile Sat Nov 30 12:34:41 1996
@@ -17,13 +17,13 @@
XCOMM If you get an error "Cannot find xpm.h" while compiling, set
XCOMM XPMINC to the directory X11/xpm.h is in. Below is a guess.
- XPMINC = -I/usr/local/include
+XCOMM XPMINC = -I/usr/local/include
XCOMM SGI's ViewKit (use with -DHAS_XPMINC)
XCOMM XPMINC = -I/usr/include/Vk
XCOMM If you get an error "Connot find libXpm" while linking, set XPMLIBPATH
XCOMM to the directory libXpm.* is in. Below is a guess.
- XPMLIB = -L/usr/local/lib -lXpm
+ XPMLIB = -lXpm
#endif
@@ -35,7 +35,7 @@
XCOMM You must copy it out of the hackers directory.
XCOMM It is there because it is experimental.
XCOMM If your system has libXm, remove the 'XCOMM ' from the next line.
-#define XmLibrary
+XCOMM #define XmLibrary
#ifdef XmLibrary
XCOMM If its not with your X11 stuff you should set the following
@@ -148,7 +148,7 @@
XCOMM Uncomment to use hackers modes. It may make xlock unstable.
XCOMM Please do not uncomment for precompiled distributions.
-#define Hackers
+XCOMM #define Hackers
#ifdef Hackers
XCOMM If you only want some of these you must remove the ones you do
@@ -322,9 +322,9 @@
XCOMM -DSTAFF_NETGROUP=\"/etc/xlock.netgroup\" netgroup that is exempt
XCOMM May have to combine in one long line if "+=" does not work
- OPTDEF = -DUSE_VROOT -DALWAYS_ALLOW_ROOT
+XCOMM OPTDEF = -DUSE_VROOT -DALWAYS_ALLOW_ROOT
XCOMM OPTDEF += -DSYSLOG
-XCOMM OPTDEF += -DMOUSE_MOTION
+ OPTDEF += -DMOUSE_MOTION
XCOMM OPTDEF += -DMULTIPLE_ROOT
XCOMM OPTDEF += -DOLD_EVENT_LOOP
XCOMM 0PTDEF += -DUSE_XLOCKRC
@@ -350,8 +350,8 @@
IMAGEBITMAP = $(MEDIUMBITMAP)
XCOMM IMAGEBITMAP = l-bob
XCOMM IMAGEBITMAP = m-xlock
-XCOMM LIFEBITMAP = $(SMALLBITMAP)
- LIFEBITMAP = s-grelb
+ LIFEBITMAP = $(SMALLBITMAP)
+XCOMM LIFEBITMAP = s-grelb
LIFE1DBITMAP = $(TINYBITMAP)
MAZEBITMAP = $(LARGEBITMAP)
XCOMM MAZEBITMAP = m-xlock
|