summaryrefslogtreecommitdiff
path: root/x11/gtk
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>1999-04-29 11:14:35 +0000
committertron <tron@pkgsrc.org>1999-04-29 11:14:35 +0000
commit49f58b5af02f1cce564489969b2e441865ea2ae7 (patch)
treec5c946ec3cfeacd96f71edfc3fc3cb5210cd1d18 /x11/gtk
parente69be9a7d39b1451347e6e58b7ad5439c47dfe73 (diff)
downloadpkgsrc-49f58b5af02f1cce564489969b2e441865ea2ae7.tar.gz
Properly order linker option output of "gtk-config".
Diffstat (limited to 'x11/gtk')
-rw-r--r--x11/gtk/patches/patch-af13
1 files changed, 8 insertions, 5 deletions
diff --git a/x11/gtk/patches/patch-af b/x11/gtk/patches/patch-af
index d486d57229a..3353533debf 100644
--- a/x11/gtk/patches/patch-af
+++ b/x11/gtk/patches/patch-af
@@ -1,13 +1,16 @@
-$NetBSD: patch-af,v 1.1 1999/04/27 21:33:26 tron Exp $
+$NetBSD: patch-af,v 1.2 1999/04/29 11:14:35 tron Exp $
--- gtk-config.in.orig Tue Feb 2 00:17:38 1999
-+++ gtk-config.in Tue Apr 27 23:17:01 1999
-@@ -104,7 +104,7 @@
++++ gtk-config.in Thu Apr 29 12:13:36 1999
+@@ -104,9 +104,9 @@
if test "$echo_libs" = "yes"; then
my_glib_libs=
- libdirs=-L@libdir@
-+ libdirs=-L@libdir@\ -Wl,-R@libdir@
++ libdirs="-L@libdir@ -Wl,-R@libdir@"
for i in $glib_libs ; do
- if test $i != -L@libdir@ ; then
+- if test $i != -L@libdir@ ; then
++ if test $i != -L@libdir@ -a $i != -Wl,-R@libdir@ ; then
if test -z "$my_glib_libs" ; then
+ my_glib_libs="$i"
+ else