• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

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

Révision95034725ac5ab8597eca01e81ec0abb9dd1ff285 (tree)
l'heure2002-02-13 16:52:14
AuteurJohn Harper <jsh@unfa...>
CommiterJohn Harper

Message de Log

committed an updated version

2002-02-12 John Harper <jsh@unfactored.org>

* po/sawfish.pot: committed an updated version

* configure.in: don't use AM_PATH_IMLIB to detect Imlib, do it
by hand (but no version check, which shouldn't be too
important). Also added a (bogus?) fix for the capplet

Status of port: sawfish-ui mostly works (in non-tree mode).
Some problems with appearance pop-down list?

Change Summary

Modification

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
1+2002-02-12 John Harper <jsh@unfactored.org>
2+
3+ * po/sawfish.pot: committed an updated version
4+
5+ * configure.in: don't use AM_PATH_IMLIB to detect Imlib, do it
6+ by hand (but no version check, which shouldn't be too
7+ important). Also added a (bogus?) fix for the capplet
8+
9+ Status of port: sawfish-ui mostly works (in non-tree mode).
10+ Some problems with appearance pop-down list?
11+
112 2002-02-12 Kjartan Maraas <kmaraas@gnome.org>
213
314 * po/no.po: Updated Norwegian (bokm虱) translation.
--- a/configure.in
+++ b/configure.in
@@ -25,7 +25,7 @@ AC_CONFIG_HEADER(config.h)
2525 AC_CONFIG_AUX_DIR(etc)
2626
2727 dnl Release versioning info
28-version="1.0.1-gnome2-1"
28+version="2.0.pre1"
2929
3030 output_files="src/Makefile lisp/Makefile scripts/Makefile themes/Makefile\
3131 lisp/sawfish/ui/Makefile lisp/sawfish/gtk/Makefile sounds/Makefile\
@@ -156,13 +156,27 @@ if test "$with_gdk_pixbuf" != "no"; then
156156 fi
157157 fi
158158 if test "$with_gdk_pixbuf" = "no"; then
159- AM_PATH_IMLIB
160- if $IMLIB_CONFIG --libs | grep " -lpng" >/dev/null 2>&1; then true; else
161- AC_MSG_ERROR([imlib must be built with support for png images])
159+ AC_PATH_PROG(IMLIB_CONFIG, imlib-config, no)
160+ AC_MSG_CHECKING([for Imlib])
161+ if test "$IMLIB_CONFIG" = "no"; then
162+ AC_MSG_RESULT([no])
163+ AC_MSG_ERROR([can't find imlib-config])
164+ else
165+ IMLIB_VERSION=`$IMLIB_CONFIG --version`
166+ dnl XXX do version check..
167+ AC_MSG_RESULT([version $IMLIB_VERSION])
168+ IMLIB_CFLAGS=`$IMLIB_CONFIG --cflags`
169+ IMLIB_LIBS=`$IMLIB_CONFIG --libs`
170+ if $IMLIB_CONFIG --libs | grep " -lpng" >/dev/null 2>&1; then true; else
171+ AC_MSG_ERROR([imlib must be built with support for png images])
172+ fi
173+ AC_DEFINE(HAVE_IMLIB,1)
174+ IMAGE_LIBS='${IMLIB_LIBS}'
175+ IMAGE_CFLAGS='${IMLIB_CFLAGS}'
176+ AC_SUBST(IMLIB_VERSION)
177+ AC_SUBST(IMLIB_CFLAGS)
178+ AC_SUBST(IMLIB_LIBS)
162179 fi
163- AC_DEFINE(HAVE_IMLIB,1)
164- IMAGE_LIBS='${IMLIB_LIBS}'
165- IMAGE_CFLAGS='${IMLIB_CFLAGS}'
166180 fi
167181 AC_SUBST(IMAGE_LIBS)
168182 AC_SUBST(IMAGE_CFLAGS)
@@ -203,6 +217,9 @@ if test "$enable_capplet" = "yes"; then
203217 AC_MSG_WARN([Can't run "gnome-config capplet", not building capplet])
204218 else
205219 AC_MSG_RESULT([yes])
220+ dnl XXX this is bogus!
221+ GNOME_CC_CFLAGS="`gnome-config --cflags gnome capplet`"
222+ GNOME_CC_LIBS="`gnome-config --libs gnome capplet`"
206223 AC_SUBST(GNOME_CC_CFLAGS)
207224 AC_SUBST(GNOME_CC_LIBS)
208225 add_subdir "capplet"