aboutsummaryrefslogtreecommitdiff
path: root/libjava/aclocal.m4
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-11 23:00:58 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-11 23:00:58 +0000
commit64f1dfea44460eb60d5b6e60283c71c0516646a7 (patch)
tree1d139542491b284e8c2d967e32d05338ecf6ae5c /libjava/aclocal.m4
parent78eda2706a601f82d8ad4d01e8af4ab90733bb2a (diff)
* java/lang/natSystem.cc (init_properties): Only look for default
locale if LC_MESSAGES is defined. * aclocal.m4, configure, include/config.h.in: Rebuilt. * configure.in: Call AM_LC_MESSAGES. * acinclude.m4 (AM_LC_MESSAGES): New macro. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48781 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/aclocal.m4')
-rw-r--r--libjava/aclocal.m425
1 files changed, 25 insertions, 0 deletions
diff --git a/libjava/aclocal.m4 b/libjava/aclocal.m4
index 406fa89d7ae..aa0c0011a16 100644
--- a/libjava/aclocal.m4
+++ b/libjava/aclocal.m4
@@ -204,6 +204,31 @@ size_t iconv();
AC_SUBST(LIBICONV)
])
+# Check whether LC_MESSAGES is available in <locale.h>.
+# Ulrich Drepper <drepper@cygnus.com>, 1995.
+#
+# This file can be copied and used freely without restrictions. It can
+# be used in projects which are not available under the GNU General Public
+# License or the GNU Library General Public License but which still want
+# to provide support for the GNU gettext functionality.
+# Please note that the actual code of the GNU gettext library is covered
+# by the GNU Library General Public License, and the rest of the GNU
+# gettext package package is covered by the GNU General Public License.
+# They are *not* in the public domain.
+
+# serial 2
+
+AC_DEFUN([AM_LC_MESSAGES],
+ [if test $ac_cv_header_locale_h = yes; then
+ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
+ [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
+ am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
+ if test $am_cv_val_LC_MESSAGES = yes; then
+ AC_DEFINE(HAVE_LC_MESSAGES, 1,
+ [Define if your <locale.h> file defines LC_MESSAGES.])
+ fi
+ fi])
+
# Do all the work for Automake. This macro actually does too much --
# some checks are only needed if your package does certain things.
# But this isn't really a big deal.