diff options
author | Andrew Cagney <cagney@gnu.org> | 2005-01-31 20:29:41 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@gnu.org> | 2005-01-31 20:29:41 +0000 |
commit | c824aa4330e42ba7a68ffe1c20601203072307dd (patch) | |
tree | d3d4c7e0ec19230b5b44e933943ada13603a50aa | |
parent | c93b32d9bf61c5041daaa2b8ebd2ee5b7a6c73d0 (diff) | |
download | newlib-c824aa4330e42ba7a68ffe1c20601203072307dd.zip newlib-c824aa4330e42ba7a68ffe1c20601203072307dd.tar.gz newlib-c824aa4330e42ba7a68ffe1c20601203072307dd.tar.bz2 |
2005-01-31 Andrew Cagney <cagney@gnu.org>
* gettext.m4: Only set ENABLE_NLS when gettext is present.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gettext.m4 | 4 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-01-31 Andrew Cagney <cagney@gnu.org> + + * gettext.m4: Only set ENABLE_NLS when gettext is present. + 2005-01-29 Hans-Peter Nilsson <hp@axis.com> * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*. @@ -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], |