diff options
author | miwi <miwi@FreeBSD.org> | 2006-11-28 06:03:42 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-11-28 06:03:42 +0800 |
commit | 169be6e0ca35b721c48e520235ce8ac5695ec9f8 (patch) | |
tree | 98bab2becff74ddd931b16e6a75a5b400aaa6696 /graphics | |
parent | bbd7eb59c4c0f04a3d6e398f353c569603dccb5a (diff) | |
download | freebsd-ports-gnome-169be6e0ca35b721c48e520235ce8ac5695ec9f8.tar.gz freebsd-ports-gnome-169be6e0ca35b721c48e520235ce8ac5695ec9f8.tar.zst freebsd-ports-gnome-169be6e0ca35b721c48e520235ce8ac5695ec9f8.zip |
- Respect X11BASE
PR: ports/105894
Submitted by: trasz
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/isreal/files/patch-Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/graphics/isreal/files/patch-Makefile b/graphics/isreal/files/patch-Makefile index 0f678134e02a..0e787f8d23be 100644 --- a/graphics/isreal/files/patch-Makefile +++ b/graphics/isreal/files/patch-Makefile @@ -1,15 +1,18 @@ ---- Makefile.orig Thu Jan 6 08:09:10 2000 -+++ Makefile Sat Mar 31 19:46:20 2001 -@@ -3,13 +3,14 @@ +--- Makefile.orig Wed Jan 5 22:39:10 2000 ++++ Makefile Mon Nov 27 00:23:30 2006 +@@ -1,16 +1,17 @@ # - LIBS = -L/usr/X11R6/lib -L/usr/local/lib -lX11 -lXext \ + # $Id: Makefile,v 1.7 2000/01/05 21:39:10 aland Exp $ + # +-LIBS = -L/usr/X11R6/lib -L/usr/local/lib -lX11 -lXext \ - -ljpeg -lpng -ltiff -lz -lgif -lm -lImlib -CFLAGS = -g -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align \ - -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes \ - -Wmissing-prototypes -Wmissing-declarations -Wnested-externs ++LIBS = -L$(X11BASE)/lib -L/usr/local/lib -lX11 -lXext \ + -ljpeg -lpng -ltiff -lz -lungif -lm -lImlib + -+CFLAGS += -I/usr/X11R6/include ++CFLAGS += -I$(X11BASE)/include VERSION=2.0 @@ -20,3 +23,4 @@ + $(CC) isreal.o $(LIBS) -o $@ clean: + @rm -f *~ *.o isreal |