Blame m4/lcmessage.m4

Packit Service 9f2c4a
# lcmessage.m4 serial 3 (gettext-0.11.3)
Packit Service 9f2c4a
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
Packit Service 9f2c4a
dnl This file is free software, distributed under the terms of the GNU
Packit Service 9f2c4a
dnl General Public License.  As a special exception to the GNU General
Packit Service 9f2c4a
dnl Public License, this file may be distributed as part of a program
Packit Service 9f2c4a
dnl that contains a configuration script generated by Autoconf, under
Packit Service 9f2c4a
dnl the same distribution terms as the rest of that program.
Packit Service 9f2c4a
dnl
Packit Service 9f2c4a
dnl This file can can be used in projects which are not available under
Packit Service 9f2c4a
dnl the GNU General Public License or the GNU Library General Public
Packit Service 9f2c4a
dnl License but which still want to provide support for the GNU gettext
Packit Service 9f2c4a
dnl functionality.
Packit Service 9f2c4a
dnl Please note that the actual code of the GNU gettext library is covered
Packit Service 9f2c4a
dnl by the GNU Library General Public License, and the rest of the GNU
Packit Service 9f2c4a
dnl gettext package package is covered by the GNU General Public License.
Packit Service 9f2c4a
dnl They are *not* in the public domain.
Packit Service 9f2c4a
Packit Service 9f2c4a
dnl Authors:
Packit Service 9f2c4a
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995.
Packit Service 9f2c4a
Packit Service 9f2c4a
# Check whether LC_MESSAGES is available in <locale.h>.
Packit Service 9f2c4a
Packit Service 9f2c4a
AC_DEFUN([AM_LC_MESSAGES],
Packit Service 9f2c4a
[
Packit Service 9f2c4a
  AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
Packit Service 9f2c4a
    [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
Packit Service 9f2c4a
       am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
Packit Service 9f2c4a
  if test $am_cv_val_LC_MESSAGES = yes; then
Packit Service 9f2c4a
    AC_DEFINE(HAVE_LC_MESSAGES, 1,
Packit Service 9f2c4a
      [Define if your <locale.h> file defines LC_MESSAGES.])
Packit Service 9f2c4a
  fi
Packit Service 9f2c4a
])