1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/x11/gnomelibs/files/patch-ac

69 lines
2.0 KiB
Plaintext
Raw Normal View History

1999-01-14 16:59:34 +00:00
--- gnome-config.in.orig Wed Jan 13 07:42:48 1999
+++ gnome-config.in Fri Jan 15 00:02:56 1999
@@ -41,18 +41,18 @@
Known values for LIBRARY are:
- glib (calls glib-config)
+ glib11d (calls glib11d-config)
idl (to be used with orbit-idl)
gnome
gnomeui
1998-09-30 13:51:46 +00:00
gnorba
- gtk (calls gtk-config)
1999-01-14 16:59:34 +00:00
+ gtk11d (calls gtk11d-config)
gtkxmhtml (only --libs)
zvt (only --libs)
1999-01-14 16:59:34 +00:00
If LIBRARY is none of these,
- ${libdir}/<LIBRARY>Conf.sh
+ ${datadir}/<LIBRARY>Conf.sh
is looked in for the necessary information.
EOF
@@ -114,33 +114,33 @@
usage 1
;;
glib)
- the_libs="$the_libs `glib-config --libs`"
- the_flags="$the_flags `glib-config --cflags`"
+ the_libs="$the_libs `glib11d-config --libs`"
+ the_flags="$the_flags `glib11d-config --cflags`"
;;
- gtk)
- the_libs="$the_libs `gtk-config --libs`"
- the_flags="$the_flags `gtk-config --cflags`"
+ gtk11)
1999-01-14 16:59:34 +00:00
+ the_libs="$the_libs `gtk11d-config --libs`"
+ the_flags="$the_flags `gtk11d-config --cflags`"
;;
gnome)
1999-01-14 16:59:34 +00:00
- the_libs="$the_libs @GNOME_LIBDIR@ @GNOME_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @GNOME_LIBS@ -lintl"
the_flags="$the_flags @GNOME_INCLUDEDIR@ @GTK_CFLAGS@"
1998-11-19 15:06:59 +00:00
;;
gnomeui)
1999-01-14 16:59:34 +00:00
- the_libs="$the_libs @GNOME_LIBDIR@ @GNOMEUI_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ -lXpm -ljpeg -lpng -lz -ltiff -lgif @GNOMEUI_LIBS@ -lintl"
the_flags="$the_flags @GNOME_INCLUDEDIR@ @GTK_CFLAGS@"
1998-11-19 15:06:59 +00:00
;;
gtkxmhtml)
- the_libs="$the_libs @GNOME_LIBDIR@ @GTKXMHTML_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @GTKXMHTML_LIBS@ -lintl"
;;
gnorba)
1999-01-01 02:47:12 +00:00
- the_libs="$the_libs @GNOME_LIBDIR@ -lgnorba @ORBIT_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ -lgnorba @ORBIT_LIBS@ -lintl"
1998-11-19 15:06:59 +00:00
the_flags="$the_flags @GNOME_INCLUDEDIR@ @ORBIT_CFLAGS@"
;;
1999-01-01 02:47:12 +00:00
idl)
the_flags="@GNOME_IDLDIR@"
;;
1998-11-19 15:06:59 +00:00
zvt)
- the_libs="$the_libs @GNOME_LIBDIR@ @ZVT_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @ZVT_LIBS@ -lintl"
;;
*)
cnf_sh=${libdir}/${1}Conf.sh