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.
This commit is contained in:
Iván Briano 2014-07-30 11:00:35 -03:00
parent 14a7fb779f
commit 0a8e42276c
1 changed files with 0 additions and 2 deletions

View File

@ -9,8 +9,6 @@
#define _(string) gettext (string)
#else
#define _(string) (string)
#undef gettext
#define gettext(string) (string)
#endif
#define gettext_noop(String) String