summaryrefslogtreecommitdiff
path: root/gettext.m4
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-01-31 20:30:37 +0000
committerAndrew Cagney <cagney@redhat.com>2005-01-31 20:30:37 +0000
commitb1e9db255a908d27c195571e0f2f69bc5a835145 (patch)
tree4ca4829ec6379fc710dfb777c2e6e96b1d952a6e /gettext.m4
parentaf79c5a259e9c383d5b5fc3ca2ebdadd1f863187 (diff)
downloadgdb-b1e9db255a908d27c195571e0f2f69bc5a835145.tar.gz
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 f3deafa61dc..2c54fb8c140 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],