On Wed, Mar 24, 2010 at 10:20 AM, Tamas TEVESZ <[email protected]> wrote: > 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
Functions are defined when necessary on src/wconfig.h, the patch i've sent on another email did the trick here. -- Renato Botelho -- To unsubscribe, send mail to [email protected].
