Japanese translation of message catalog for Sawfish Window-Manager
Revision | 566d860124749f22958d1e755f3e7103e0a98865 (tree) |
---|---|
Time | 2002-11-03 17:25:49 |
Author | John Harper <jsh@unfa...> |
Commiter | John Harper |
disabled --enable-gnome-widgets by default, it probably doesn't work
2002-11-02 John Harper <jsh@unfactored.org>
* configure.in: disabled --enable-gnome-widgets by default, it
probably doesn't work anyway. Also be smarter when testing for
rep-gtk plugins
@@ -1,5 +1,9 @@ | ||
1 | 1 | 2002-11-02 John Harper <jsh@unfactored.org> |
2 | 2 | |
3 | + * configure.in: disabled --enable-gnome-widgets by default, it | |
4 | + probably doesn't work anyway. Also be smarter when testing for | |
5 | + rep-gtk plugins | |
6 | + | |
3 | 7 | * configure.in, config.h.in, Makedefs.in: check for Xft |
4 | 8 | libraries and headers (merged from HEAD) |
5 | 9 |
@@ -110,10 +110,10 @@ CPPFLAGS="${_cppflags}" | ||
110 | 110 | dnl Check for librep |
111 | 111 | AM_PATH_REP(0.14) |
112 | 112 | |
113 | -rep_gtk_function=gtk-main-iteration-do | |
114 | -rep_gtk_version=0.14 | |
113 | +rep_gtk_function=gtk-widget-set-size-request | |
114 | +rep_gtk_version=0.17 | |
115 | 115 | |
116 | -AC_MSG_CHECKING([for correct rep-gtk version]) | |
116 | +AC_MSG_CHECKING([for rep-gtk >= $rep_gtk_version]) | |
117 | 117 | cat >conftest <<EOF |
118 | 118 | (condition-case nil |
119 | 119 | (progn |
@@ -228,7 +228,7 @@ AC_ARG_ENABLE(themer, | ||
228 | 228 | if test "$enable_themer" = yes; then |
229 | 229 | dnl configure redirects &5 to config.log |
230 | 230 | AC_MSG_CHECKING([for rep-gtk libglade wrapper]) |
231 | - if REP_GTK_DONT_INITIALIZE=1 rep --batch -l libglade 2>&5; then | |
231 | + if REP_GTK_DONT_INITIALIZE=1 rep --batch -l gui.gtk.libglade 2>&5; then | |
232 | 232 | AC_MSG_RESULT([yes]) |
233 | 233 | add_subdir "themer" |
234 | 234 | else |
@@ -240,11 +240,11 @@ fi | ||
240 | 240 | AC_ARG_ENABLE(gnome-widgets, |
241 | 241 | [ --enable-gnome-widgets Use GNOME widgets in places [default] |
242 | 242 | --disable-gnome-widgets Don't use GNOME widgets], [], |
243 | - [enable_gnome_widgets=maybe]) | |
243 | + [enable_gnome_widgets=no]) | |
244 | 244 | |
245 | 245 | if test "$enable_gnome_widgets" != "no"; then |
246 | 246 | AC_MSG_CHECKING([for rep-gtk GNOME wrappers]) |
247 | - if REP_GTK_DONT_INITIALIZE=1 rep --batch -l gnomeui -l gdk-pixbuf -l gnome-canvas-pixbuf 2>&5; then | |
247 | + if REP_GTK_DONT_INITIALIZE=1 rep --batch -l gui.gtk-2.gnome-ui 2>&5; then | |
248 | 248 | AC_MSG_RESULT([yes]) |
249 | 249 | REP_GTK_GNOME=yes |
250 | 250 | else |