aboutsummaryrefslogtreecommitdiff
path: root/x11/libgnome/files/patch-ac
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-08-22 03:42:59 +0000
committerSteve Price <steve@FreeBSD.org>1999-08-22 03:42:59 +0000
commit92e105b906fa7228a2b5eb48b6eba118d129ec18 (patch)
treeff5ab21c8c8324c38ebe6c666dfd9021eb341bb2 /x11/libgnome/files/patch-ac
parentbdcb8df99f48c16f7aa7ad97f8605d17d232707d (diff)
Notes
Diffstat (limited to 'x11/libgnome/files/patch-ac')
-rw-r--r--x11/libgnome/files/patch-ac46
1 files changed, 19 insertions, 27 deletions
diff --git a/x11/libgnome/files/patch-ac b/x11/libgnome/files/patch-ac
index 184d5e79b184..3f491f338654 100644
--- a/x11/libgnome/files/patch-ac
+++ b/x11/libgnome/files/patch-ac
@@ -1,17 +1,26 @@
---- gnome-config.in.orig Thu Apr 15 13:59:46 1999
-+++ gnome-config.in Sat May 8 17:32:13 1999
-@@ -43,25 +43,25 @@
+--- gnome-config.in.orig Mon May 31 06:04:01 1999
++++ gnome-config.in Mon Jul 12 10:27:28 1999
+@@ -19,7 +19,7 @@
+ pkglibdir=${libdir}/@PACKAGE@
+ pkgincludedir=${includedir}/@PACKAGE@
+ MODULE_VERSION=@PACKAGE@-@VERSION@
+-module_dirs="$libdir:$GNOME_LIBCONFIG_PATH"
++module_dirs="$sysconfdir:$GNOME_LIBCONFIG_PATH"
+
+ usage()
+ {
+@@ -46,18 +46,18 @@
Known values for LIBRARY are:
- glib (calls glib-config)
-+ glib (calls glib12-config)
++ glib (calls GLIB_CONFIG)
idl (to be used with orbit-idl)
gnome
gnomeui
gnorba
- gtk (calls gtk-config)
-+ gtk (calls gtk12-config)
++ gtk (calls GTK_CONFIG)
gtkxmhtml (only --libs)
zvt (only --libs)
@@ -22,28 +31,20 @@
is looked in for the necessary information. Those currently installed
appear to be:
-
- EOF
-
-- conf_shs=`cd ${libdir}; echo *Conf.sh`
-+ conf_shs=`cd ${sysconfdir}; echo *Conf.sh`
-
- if test "x$conf_shs" = x || test "x$conf_shs" = 'x*Conf.sh'; then
- echo " <NONE>"
-@@ -146,19 +146,19 @@
+@@ -149,19 +149,19 @@
usage 1
;;
glib)
- 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`"
++ the_libs="$the_libs `$GLIB_CONFIG --libs`"
++ the_flags="$the_flags `$GLIB_CONFIG --cflags`"
;;
gtk)
- 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`"
++ the_libs="$the_libs `$GTK_CONFIG --libs`"
++ the_flags="$the_flags `$GTK_CONFIG --cflags`"
;;
gnome)
the_libs="$the_libs @GNOME_LIBDIR@ @GNOME_LIBS@"
@@ -55,12 +56,3 @@
the_flags="$the_flags @GNOME_INCLUDEDIR@ @GTK_CFLAGS@"
;;
gtkxmhtml)
-@@ -175,7 +175,7 @@
- the_libs="$the_libs @GNOME_LIBDIR@ @ZVT_LIBS@"
- ;;
- *)
-- cnf_sh=${libdir}/${1}Conf.sh
-+ cnf_sh=${sysconfdir}/${1}Conf.sh
- if test -f ${cnf_sh}; then
- . ${cnf_sh}
- up_name=`echo $1 | tr a-z A-Z`