sachiel pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=0a8e42276c544a6aa159647e982c4e5077259116
commit 0a8e42276c544a6aa159647e982c4e5077259116 Author: Iván Briano <[email protected]> Date: Wed Jul 30 11:00:35 2014 -0300 Don't undef gettext, it breaks the build when it's disabled Somewhere along the line, libintl.h is included whether or not --disable-nls was passed to configure, and undefining gettext makes the macros in that header make no sense. --- src/bin/private.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/private.h b/src/bin/private.h index fb94b90..720326a 100644 --- a/src/bin/private.h +++ b/src/bin/private.h @@ -9,8 +9,6 @@ #define _(string) gettext (string) #else #define _(string) (string) -#undef gettext -#define gettext(string) (string) #endif #define gettext_noop(String) String --
