Japanese translation of message catalog for Sawfish Window-Manager
Révision | 95034725ac5ab8597eca01e81ec0abb9dd1ff285 (tree) |
---|---|
l'heure | 2002-02-13 16:52:14 |
Auteur | John Harper <jsh@unfa...> |
Commiter | John Harper |
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?
@@ -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 | + | |
1 | 12 | 2002-02-12 Kjartan Maraas <kmaraas@gnome.org> |
2 | 13 | |
3 | 14 | * po/no.po: Updated Norwegian (bokm虱) translation. |
@@ -25,7 +25,7 @@ AC_CONFIG_HEADER(config.h) | ||
25 | 25 | AC_CONFIG_AUX_DIR(etc) |
26 | 26 | |
27 | 27 | dnl Release versioning info |
28 | -version="1.0.1-gnome2-1" | |
28 | +version="2.0.pre1" | |
29 | 29 | |
30 | 30 | output_files="src/Makefile lisp/Makefile scripts/Makefile themes/Makefile\ |
31 | 31 | lisp/sawfish/ui/Makefile lisp/sawfish/gtk/Makefile sounds/Makefile\ |
@@ -156,13 +156,27 @@ if test "$with_gdk_pixbuf" != "no"; then | ||
156 | 156 | fi |
157 | 157 | fi |
158 | 158 | 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) | |
162 | 179 | fi |
163 | - AC_DEFINE(HAVE_IMLIB,1) | |
164 | - IMAGE_LIBS='${IMLIB_LIBS}' | |
165 | - IMAGE_CFLAGS='${IMLIB_CFLAGS}' | |
166 | 180 | fi |
167 | 181 | AC_SUBST(IMAGE_LIBS) |
168 | 182 | AC_SUBST(IMAGE_CFLAGS) |
@@ -203,6 +217,9 @@ if test "$enable_capplet" = "yes"; then | ||
203 | 217 | AC_MSG_WARN([Can't run "gnome-config capplet", not building capplet]) |
204 | 218 | else |
205 | 219 | 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`" | |
206 | 223 | AC_SUBST(GNOME_CC_CFLAGS) |
207 | 224 | AC_SUBST(GNOME_CC_LIBS) |
208 | 225 | add_subdir "capplet" |