diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-03-19 14:38:50 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-03-19 14:38:50 +0000 |
commit | 2b560c5df44f2dbea3be06cb94e4f525213101a1 (patch) | |
tree | 0cae80b255382e0f2d3af0048ce541b299049f47 /games | |
parent | a764042bb657a116d8f882d447ff72826b5b47df (diff) | |
download | pkgsrc-2b560c5df44f2dbea3be06cb94e4f525213101a1.tar.gz |
include `gtk-config --cflags` and `gtk-config --libs` along with the
corresponding glib ones so that gtk headers/libs are found.
fixes recently noted bulk build problems
Diffstat (limited to 'games')
-rw-r--r-- | games/xarchon/files/patch-sum | 4 | ||||
-rw-r--r-- | games/xarchon/patches/patch-ab | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/games/xarchon/files/patch-sum b/games/xarchon/files/patch-sum index d2d2a09e329..4b1b05be0ca 100644 --- a/games/xarchon/files/patch-sum +++ b/games/xarchon/files/patch-sum @@ -1,3 +1,3 @@ -$NetBSD: patch-sum,v 1.3 1999/10/29 00:51:01 hubertf Exp $ +$NetBSD: patch-sum,v 1.4 2001/03/19 14:38:50 dmcmahill Exp $ -MD5 (patch-ab) = dd081933ce6829e7d1c77f1fd5fdcfde +SHA1 (patch-ab) = fa401154af294b65ca9eb4b11cc50bf6756acd9f diff --git a/games/xarchon/patches/patch-ab b/games/xarchon/patches/patch-ab index 086b0da05b3..eb739aff520 100644 --- a/games/xarchon/patches/patch-ab +++ b/games/xarchon/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.2 1999/10/27 23:56:42 hubertf Exp $ +$NetBSD: patch-ab,v 1.3 2001/03/19 14:38:50 dmcmahill Exp $ --- src/Makefile.in.orig Wed Oct 13 05:28:34 1999 +++ src/Makefile.in Wed Oct 13 05:35:10 1999 @@ -9,8 +9,8 @@ $NetBSD: patch-ab,v 1.2 1999/10/27 23:56:42 hubertf Exp $ -CC = @CC@ -CXX = @CXX@ +# This mess should be done differently - HF -+CC = cc -I${X11BASE}/include -L${X11BASE}/lib -Wl,-R${X11BASE}/lib -I. -I.. -I${LOCALBASE}/include `glib-config --cflags --prefix=${LOCALBASE}` `glib-config --libs --prefix=${LOCALBASE}` -+CXX = c++ -I${X11BASE}/include -L${X11BASE}/lib -Wl,-R${X11BASE}/lib -I. -I.. -I${LOCALBASE}/include `glib-config --cflags --prefix=${LOCALBASE}` `glib-config --libs --prefix=${LOCALBASE}` ++CC = cc -I${X11BASE}/include -L${X11BASE}/lib -Wl,-R${X11BASE}/lib -I. -I.. -I${LOCALBASE}/include `glib-config --cflags --prefix=${LOCALBASE}` `gtk-config --cflags` `glib-config --libs --prefix=${LOCALBASE}` `gtk-config --libs` ++CXX = c++ -I${X11BASE}/include -L${X11BASE}/lib -Wl,-R${X11BASE}/lib -I. -I.. -I${LOCALBASE}/include `glib-config --cflags --prefix=${LOCALBASE}` `gtk-config --cflags` `glib-config --libs --prefix=${LOCALBASE}` `gtk-config --libs` ESD_CFLAGS = @ESD_CFLAGS@ ESD_CONFIG = @ESD_CONFIG@ ESD_LIBS = @ESD_LIBS@ |