summaryrefslogtreecommitdiff
path: root/x11-wm/wm2/files
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1997-07-08 06:23:30 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1997-07-08 06:23:30 +0000
commit14cd8ba1bd26e1da9762b095ecd2e54805fc1dcd (patch)
tree562db5923fd36fcf0c80c02f4343aeb3ef9fa8ed /x11-wm/wm2/files
parentRun scripts with /bin/sh explicitly rather than depending on the x bits (diff)
New port, wm2:
a very simple window manager for X PR: 2904 Submitted by: Nakai@Mlab.t.u-tokyo.ac.jp
Notes
Notes: svn path=/head/; revision=7236
Diffstat (limited to 'x11-wm/wm2/files')
-rw-r--r--x11-wm/wm2/files/patch-aa42
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-wm/wm2/files/patch-aa b/x11-wm/wm2/files/patch-aa
new file mode 100644
index 000000000000..ae615aeff8fd
--- /dev/null
+++ b/x11-wm/wm2/files/patch-aa
@@ -0,0 +1,42 @@
+*** Makefile.orig Thu Jan 16 21:20:29 1997
+--- Makefile Sat Mar 1 20:56:39 1997
+***************
+*** 1,10 ****
+
+ # if you want pixmaps you'll need Xpm, so add -lXpm to the next line
+! LIBS = -L/usr/X11/lib -lXext -lX11 -lXmu -lm
+
+ CC = gcc
+ CCC = gcc
+! CFLAGS = -O2
+ OBJECTS = Border.o Buttons.o Client.o Events.o Main.o Manager.o Rotated.o listimpl.o
+
+ .c.o:
+--- 1,10 ----
+
+ # if you want pixmaps you'll need Xpm, so add -lXpm to the next line
+! LIBS = -L/usr/X11R6/lib -lXext -lX11 -lXmu -lm
+
+ CC = gcc
+ CCC = gcc
+! CFLAGS += -O2 -I/usr/X11R6/include
+ OBJECTS = Border.o Buttons.o Client.o Events.o Main.o Manager.o Rotated.o listimpl.o
+
+ .c.o:
+***************
+*** 14,20 ****
+ $(CCC) -c $(CFLAGS) $<
+
+ wm2: $(OBJECTS)
+! mv -f wm2 wm2.old >& /dev/null || true
+ $(CCC) -o wm2 $(OBJECTS) $(LIBS)
+
+ depend:
+--- 14,20 ----
+ $(CCC) -c $(CFLAGS) $<
+
+ wm2: $(OBJECTS)
+! mv -f wm2 wm2.old 2> /dev/null || true
+ $(CCC) -o wm2 $(OBJECTS) $(LIBS)
+
+ depend: