On Wed, 24 Mar 2010, Renato Botelho wrote: > I have news about libintl support, I got the error just when LINGUAS > envvar is unset, when I have it set for all languages supported, > wmaker build fine.
woo, nice catch. i have a hunch. can you try this? diff --git a/src/wconfig.h.in b/src/wconfig.h.in index 1a3bd11..06d9153 100644 --- a/src/wconfig.h.in +++ b/src/wconfig.h.in @@ -413,6 +413,7 @@ #include <libintl.h> #define _(text) gettext(text) #else +#define gettext(text) (text) #define _(text) (text) #endif -- [-] mkdir /nonexistent -- To unsubscribe, send mail to [email protected].
