From: caro Date: Wed, 19 Oct 2011 17:21:33 +0000 (+0000) Subject: Ecore: do not enter po/ if --disable-nls is passed to configure X-Git-Tag: accepted/2.0/20130306.224007~140^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c2ac414d6f36e291e92f7dc1292d791b4f52b03;p=profile%2Fivi%2Fecore.git Ecore: do not enter po/ if --disable-nls is passed to configure git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@64183 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index 4719011..24066ec 100644 --- a/configure.ac +++ b/configure.ac @@ -65,12 +65,18 @@ AM_GNU_GETTEXT_VERSION([0.17]) m4_ifdef([AM_GNU_GETTEXT], [ AM_GNU_GETTEXT([external]) po_makefile_in=po/Makefile.in -AM_CONDITIONAL([HAVE_PO], [true]) +have_po="yes" ],[ -AM_CONDITIONAL([HAVE_PO], [false]) +have_po="no" ]) AC_SUBST(LTLIBINTL) +if test "x${POSUB}" = "x" ; then + have_po="no" +fi + +AM_CONDITIONAL([HAVE_PO], [test "x${have_po}" = "xyes"]) + with_max_log_level="" AC_ARG_WITH(internal-maximum-log-level, [AC_HELP_STRING([--with-internal-maximum-log-level=NUMBER],