aboutsummaryrefslogtreecommitdiff
path: root/x11/libgnome
diff options
context:
space:
mode:
authorYukihiro Nakai <nakai@FreeBSD.org>1999-10-18 03:47:31 +0000
committerYukihiro Nakai <nakai@FreeBSD.org>1999-10-18 03:47:31 +0000
commit0f377793a7645066826b7543ea8f5eff6530be98 (patch)
tree2a31e5caefcde58244919b4d28cceda8a43c1e6a /x11/libgnome
parenta807affb952816cfe8b431eaae5b3a2e551fcfbb (diff)
downloadports-0f377793a7645066826b7543ea8f5eff6530be98.tar.gz
ports-0f377793a7645066826b7543ea8f5eff6530be98.zip
Fix to enable to refer gtk-config or glib-config from
gnome-config. Now 'gnome-config gtk --cflags' or so works.
Notes
Notes: svn path=/head/; revision=22499
Diffstat (limited to 'x11/libgnome')
-rw-r--r--x11/libgnome/files/patch-ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/x11/libgnome/files/patch-ac b/x11/libgnome/files/patch-ac
index 4e488e3a5659..5663f237f4e2 100644
--- a/x11/libgnome/files/patch-ac
+++ b/x11/libgnome/files/patch-ac
@@ -1,5 +1,5 @@
---- gnome-config.in.orig Fri Sep 10 13:25:18 1999
-+++ gnome-config.in Thu Sep 23 12:18:53 1999
+--- gnome-config.in.orig Sat Sep 11 03:25:18 1999
++++ gnome-config.in Mon Oct 18 11:43:01 1999
@@ -19,7 +19,7 @@
pkglibdir=${libdir}/@PACKAGE@
pkgincludedir=${includedir}/@PACKAGE@
@@ -37,14 +37,14 @@
glib)
- the_libs="$the_libs `glib-config --libs`"
- the_flags="$the_flags `glib-config --cflags`"
-+ the_libs="$the_libs `$GLIB_CONFIG --libs`"
-+ the_flags="$the_flags `$GLIB_CONFIG --cflags`"
++ the_libs="$the_libs `glib12-config --libs`"
++ the_flags="$the_flags `glib12-config --cflags`"
;;
gtk)
- the_libs="$the_libs `gtk-config --libs`"
- the_flags="$the_flags `gtk-config --cflags`"
-+ the_libs="$the_libs `$GTK_CONFIG --libs`"
-+ the_flags="$the_flags `$GTK_CONFIG --cflags`"
++ the_libs="$the_libs `gtk12-config --libs`"
++ the_flags="$the_flags `gtk12-config --cflags`"
;;
gnome)
the_libs="$the_libs @GNOME_LIBDIR@ @GNOME_LIBS@"