mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 05:39:06 +08:00
20 lines
756 B
Plaintext
20 lines
756 B
Plaintext
|
# Check whether LC_MESSAGES is available in <locale.h>.
|
||
|
# Ulrich Drepper <drepper@cygnus.com>, 1995.
|
||
|
#
|
||
|
# This file file be copied and used freely without restrictions. It can
|
||
|
# be used in projects which are not available under the GNU Public License
|
||
|
# but which still want to provide support for the GNU gettext functionality.
|
||
|
# Please note that the actual code is *not* freely available.
|
||
|
|
||
|
# serial 1
|
||
|
|
||
|
AC_DEFUN(AC_LC_MESSAGES,
|
||
|
[if test $ac_cv_header_locale_h = yes; then
|
||
|
AC_CACHE_CHECK([for LC_MESSAGES], ac_cv_val_LC_MESSAGES,
|
||
|
[AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
|
||
|
ac_cv_val_LC_MESSAGES=yes, ac_cv_val_LC_MESSAGES=no)])
|
||
|
if test $ac_cv_val_LC_MESSAGES = yes; then
|
||
|
AC_DEFINE(HAVE_LC_MESSAGES)
|
||
|
fi
|
||
|
fi])
|