stefan pushed a commit to branch master. http://git.enlightenment.org/games/etrophy.git/commit/?id=6bae98b52a6b3647f7ede6d2ce63d81b259a384f
commit 6bae98b52a6b3647f7ede6d2ce63d81b259a384f Author: Stefan Schmidt <s.schm...@samsung.com> Date: Wed Mar 26 11:44:07 2014 +0100 Add locale.h to inlcudes to fix compile on some systems. This hopefully fixes T1084 which does not have LC_ALL defined which comes from locale.h --- src/lib/etrophy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/etrophy.c b/src/lib/etrophy.c index aeaf9d7..ccc3e16 100644 --- a/src/lib/etrophy.c +++ b/src/lib/etrophy.c @@ -17,6 +17,7 @@ #if ENABLE_NLS && HAVE_GETTEXT # include <libintl.h> +# include <locale.h> #endif #ifdef ERR --