summaryrefslogtreecommitdiff
path: root/x11-wm/wmcp/files/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'x11-wm/wmcp/files/patch-aa')
-rw-r--r--x11-wm/wmcp/files/patch-aa25
1 files changed, 0 insertions, 25 deletions
diff --git a/x11-wm/wmcp/files/patch-aa b/x11-wm/wmcp/files/patch-aa
deleted file mode 100644
index 5465a9235164..000000000000
--- a/x11-wm/wmcp/files/patch-aa
+++ /dev/null
@@ -1,25 +0,0 @@
---- Makefile.orig Thu May 27 16:17:20 1999
-+++ Makefile Fri Aug 11 02:28:17 2000
-@@ -1,7 +1,7 @@
-
-
--INCLUDES =-I/usr/X11R6/include/X11 -I/usr/local/include -I/usr/include/X11R6/X11
--LIBINC =-L/usr/X11R6/lib -L/usr/include/lib
-+INCLUDES = -I${X11BASE}/include/X11 -I${X11BASE}/include
-+LIBINC = -L${X11BASE}/lib
- LIBS = -lm -lX11 -lXpm -lXext
-
- TARGET = wmcp
-@@ -31,10 +31,10 @@
- ###################################################################
-
- ${OBJECTS}: ${SOURCE}
-- gcc -g -c -Wall ${INCLUDES} ${FLAGS} $< -o $*.o
-+ ${CC} ${CFLAGS} -c ${INCLUDES} ${FLAGS} $< -o $@
-
- ${TARGET}: ${OBJECTS}
-- gcc -g -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
-+ ${CC} ${CFLAGS} -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
-
- clean::
- for i in ${OBJECTS}; do if [ -e $$i ] ; then rm $$i; fi; done