• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Revision566d860124749f22958d1e755f3e7103e0a98865 (tree)
Time2002-11-03 17:25:49
AuthorJohn Harper <jsh@unfa...>
CommiterJohn Harper

Log Message

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

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
11 2002-11-02 John Harper <jsh@unfactored.org>
22
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+
37 * configure.in, config.h.in, Makedefs.in: check for Xft
48 libraries and headers (merged from HEAD)
59
--- a/configure.in
+++ b/configure.in
@@ -110,10 +110,10 @@ CPPFLAGS="${_cppflags}"
110110 dnl Check for librep
111111 AM_PATH_REP(0.14)
112112
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
115115
116-AC_MSG_CHECKING([for correct rep-gtk version])
116+AC_MSG_CHECKING([for rep-gtk >= $rep_gtk_version])
117117 cat >conftest <<EOF
118118 (condition-case nil
119119 (progn
@@ -228,7 +228,7 @@ AC_ARG_ENABLE(themer,
228228 if test "$enable_themer" = yes; then
229229 dnl configure redirects &5 to config.log
230230 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
232232 AC_MSG_RESULT([yes])
233233 add_subdir "themer"
234234 else
@@ -240,11 +240,11 @@ fi
240240 AC_ARG_ENABLE(gnome-widgets,
241241 [ --enable-gnome-widgets Use GNOME widgets in places [default]
242242 --disable-gnome-widgets Don't use GNOME widgets], [],
243- [enable_gnome_widgets=maybe])
243+ [enable_gnome_widgets=no])
244244
245245 if test "$enable_gnome_widgets" != "no"; then
246246 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
248248 AC_MSG_RESULT([yes])
249249 REP_GTK_GNOME=yes
250250 else