diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-10-14 19:44:37 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-10-14 19:44:37 +0000 |
commit | bda17d61a6f45e217218aef0b3bda17209baf183 (patch) | |
tree | c898842220eaad0145fd524f9cd0ee5314eedc45 /games/wmtimebomb/files | |
parent | Update to 20001008. (diff) |
Fix Imakefile breakage under XFree86 4.x
PR: 21968
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=33829
Diffstat (limited to 'games/wmtimebomb/files')
-rw-r--r-- | games/wmtimebomb/files/patch-aa | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/games/wmtimebomb/files/patch-aa b/games/wmtimebomb/files/patch-aa index 04ce523d6aa2..a8684c0624a2 100644 --- a/games/wmtimebomb/files/patch-aa +++ b/games/wmtimebomb/files/patch-aa @@ -1,14 +1,18 @@ --- Imakefile.orig Mon Nov 16 21:40:24 1998 -+++ Imakefile Thu Feb 17 23:02:07 2000 -@@ -1,7 +1,9 @@ --XPMLIB = -L/usr/X11R6/lib -lXpm -lm -ljpeg -lpng -lz -ltiff -lungif ++++ Imakefile Sat Oct 14 03:27:50 2000 +@@ -1,10 +1,12 @@ +-XPMLIB = -L/usr/X11R6/lib -lXpm -lm -ljpeg -lpng -lz -ltiff -lgif -WMAKER = -L/usr/local/lib -lWMaker -lWINGs -lwraster -lPropList -+XPMLIB = `get-wraster-flags --libs` -+WMAKER = -lWMaker -lWINGs -lPropList -L%%LOCALBASE%%/lib ++XPMLIB = `get-wraster-flags --ldflags` `get-wraster-flags --libs` ++WMAKER = -lWMaker -lWINGs -lPropList -L${LOCALBASE}/lib LOCAL_LIBRARIES = $(WMAKER) $(XPMLIB) $(XLIB) -+ -+EXTRA_INCLUDES= `get-wraster-flags --cflags` -I%%LOCALBASE%%/include ++EXTRA_INCLUDES= `get-wraster-flags --cflags` -I${LOCALBASE}/include ++ SRCS = timebomb.c OBJS = timebomb.o + +-ComplexProgramTarget(wmtimebomb) ++ComplexProgramTargetNoMan(wmtimebomb) + |