evas_language_utils: Fix build error without NLS

This commit is contained in:
Jaehyun Cho 2017-09-06 11:19:28 +09:00
parent 0e885e41e5
commit 618c123341
1 changed files with 6 additions and 1 deletions

View File

@ -22,7 +22,12 @@
#include <stdlib.h>
#include <locale.h>
#include <libintl.h>
#ifdef ENABLE_NLS
# include <libintl.h>
#else
# define dgettext(domain, x) (x)
#endif
#ifdef HAVE_EVIL
# include <Evil.h>