diff options
author | hubertf <hubertf> | 2000-09-26 00:43:20 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-09-26 00:43:20 +0000 |
commit | 66efee4d634bfe0ecb3e1ec2de87b7fe3977d41d (patch) | |
tree | 4b81c223552fa08286a84aa72a20b3cb920e8856 /games/xroads/patches | |
parent | 7be943d225e74c275c69d9eacbabc135a9b0b4af (diff) | |
download | pkgsrc-66efee4d634bfe0ecb3e1ec2de87b7fe3977d41d.tar.gz |
elf lib fix
Diffstat (limited to 'games/xroads/patches')
-rw-r--r-- | games/xroads/patches/patch-aa | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/xroads/patches/patch-aa b/games/xroads/patches/patch-aa index c8df3588132..832aeafd581 100644 --- a/games/xroads/patches/patch-aa +++ b/games/xroads/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.1.1.1 1999/07/01 02:35:12 hubertf Exp $ +$NetBSD: patch-aa,v 1.2 2000/09/26 00:46:05 hubertf Exp $ ---- Makefile.orig Thu Jul 1 04:13:17 1999 -+++ Makefile Thu Jul 1 04:22:45 1999 +--- Makefile.orig Wed Jun 30 20:25:02 1999 ++++ Makefile @@ -5,8 +5,8 @@ # it's data, and BINPATH is where it puts the executable ########################################################################### @@ -27,7 +27,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/07/01 02:35:12 hubertf Exp $ ### Linux machines use this line: -LINK = -L/usr/X11R6/lib -I/usr/X11R6/include -lX11 -lm -+LINK = -L${X11BASE}/lib -I${X11BASE}/include -lX11 -lm ++LINK = -Wl,-R${X11BASE}/lib -L${X11BASE}/lib -I${X11BASE}/include -lX11 -lm ### I'm told this line works fine on Solaris 2.5.1 with X11R5: #LINK = -L/usr/openwin/lib -I/usr/openwin/include -lX11 -lm |