summaryrefslogtreecommitdiffstats
path: root/gettext.m4
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@gnu.org>2005-01-31 20:29:41 +0000
committerAndrew Cagney <cagney@gnu.org>2005-01-31 20:29:41 +0000
commitc824aa4330e42ba7a68ffe1c20601203072307dd (patch)
treed3d4c7e0ec19230b5b44e933943ada13603a50aa /gettext.m4
parentc93b32d9bf61c5041daaa2b8ebd2ee5b7a6c73d0 (diff)
downloadcygnal-c824aa4330e42ba7a68ffe1c20601203072307dd.tar.gz
cygnal-c824aa4330e42ba7a68ffe1c20601203072307dd.tar.bz2
cygnal-c824aa4330e42ba7a68ffe1c20601203072307dd.zip
2005-01-31 Andrew Cagney <cagney@gnu.org>
* gettext.m4: Only set ENABLE_NLS when gettext is present.
Diffstat (limited to 'gettext.m4')
-rw-r--r--gettext.m44
1 files changed, 3 insertions, 1 deletions
diff --git a/gettext.m4 b/gettext.m4
index f3deafa61..2c54fb8c1 100644
--- a/gettext.m4
+++ b/gettext.m4
@@ -24,7 +24,6 @@ AC_DEFUN([CY_WITH_NLS],
dnl If we use NLS figure out what method
if test "$USE_NLS" = "yes"; then
- AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if NLS is requested])
AC_MSG_CHECKING([whether included gettext is requested])
AC_ARG_WITH(included-gettext,
[ --with-included-gettext use the GNU gettext library included here],
@@ -156,6 +155,9 @@ AC_DEFUN([CY_WITH_NLS],
AC_SUBST(INTLOBJS)
AC_SUBST(POFILES)
AC_SUBST(POSUB)
+ if test "x$CATOBJEXT" != "x"; then
+ AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if NLS is requested])
+ fi
])
AC_DEFUN([CY_GNU_GETTEXT],