blob: 3382d1b9e952fe8e99ac342ccebb7bde95e2ada5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
--- gnome-config.in.orig Mon Sep 21 23:15:02 1998
+++ gnome-config.in Thu Nov 19 22:55:15 1998
@@ -45,7 +45,7 @@
gnome
gnomeui
gnorba
- gtk (calls gtk-config)
+ gtk11 (calls gtk11-config)
gtkxmhtml (only --libs)
zvt (only --libs)
@@ -116,27 +116,27 @@
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`"
+ gtk11)
+ the_libs="$the_libs `gtk11-config --libs`"
+ the_flags="$the_flags `gtk11-config --cflags`"
;;
gnome)
- 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@"
;;
gnomeui)
- the_libs="$the_libs @GNOME_LIBDIR@ @GNOMEUI_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @GNOMEUI_LIBS@ -lintl"
the_flags="$the_flags @GNOME_INCLUDEDIR@ @GTK_CFLAGS@"
;;
gtkxmhtml)
- the_libs="$the_libs @GNOME_LIBDIR@ @GTKXMHTML_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @GTKXMHTML_LIBS@ -lintl"
;;
gnorba)
- the_libs="$the_libs @GNOME_LIBDIR@ @ORBIT_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @ORBIT_LIBS@ -lintl"
the_flags="$the_flags @GNOME_INCLUDEDIR@ @ORBIT_CFLAGS@"
;;
zvt)
- the_libs="$the_libs @GNOME_LIBDIR@ @ZVT_LIBS@"
+ the_libs="$the_libs @GNOME_LIBDIR@ @ZVT_LIBS@ -lintl"
;;
*)
cnf_sh=${libdir}/${1}Conf.sh
|