Disable NLS by default when cross compiling, remove broken need for libintl

This commit is contained in:
Andy Williams 2015-01-04 14:07:35 +00:00
parent 9de1a9b318
commit 432b05b575
2 changed files with 7 additions and 1 deletions

View File

@ -71,6 +71,12 @@ fi
AC_SUBST(HAVE_LIBCLANG)
# if cross compiling, disable NLS support.
# It's not worth the trouble, at least for now.
if test "${build}" != "${host}" -o "${build}" != "${target}" -o "${host}" != "${target}"; then
enable_nls=no
fi
EFL_TESTS([${build_tests}])
# doxygen program for documentation building

View File

@ -12,7 +12,7 @@ elm_code_test_SOURCES = \
elm_code_test_main.c \
elm_code_test_private.h
elm_code_test_LDADD = @EFL_LIBS@ $(top_builddir)/elm_code/lib/libelm_code.la -lintl
elm_code_test_LDADD = @EFL_LIBS@ $(top_builddir)/elm_code/lib/libelm_code.la
elm_code_test_LDFLAGS = @EFL_LTLIBRARY_FLAGS@