Diff for /embedaddon/confuse/m4/lcmessage.m4 between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2017/01/24 14:48:55 version 1.1.1.2, 2021/03/17 00:49:17
Line 1 Line 1
# lcmessage.m4 serial 4 (gettext-0.14.2)# lcmessage.m4 serial 7 (gettext-0.18.2)
dnl Copyright (C) 1995-2002, 2004-2005 Free Software Foundation, Inc.dnl Copyright (C) 1995-2002, 2004-2005, 2008-2013 Free Software Foundation,
 dnl Inc.
 dnl This file is free software; the Free Software Foundation  dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,  dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.  dnl with or without modifications, as long as this notice is preserved.
Line 20  dnl   Ulrich Drepper <drepper@cygnus.com>, 1995. Line 21  dnl   Ulrich Drepper <drepper@cygnus.com>, 1995.
   
 AC_DEFUN([gt_LC_MESSAGES],  AC_DEFUN([gt_LC_MESSAGES],
 [  [
  AC_CACHE_CHECK([for LC_MESSAGES], gt_cv_val_LC_MESSAGES,  AC_CACHE_CHECK([for LC_MESSAGES], [gt_cv_val_LC_MESSAGES],
    [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],    [AC_LINK_IFELSE(
       gt_cv_val_LC_MESSAGES=yes, gt_cv_val_LC_MESSAGES=no)])       [AC_LANG_PROGRAM(
           [[#include <locale.h>]],
           [[return LC_MESSAGES]])],
        [gt_cv_val_LC_MESSAGES=yes],
        [gt_cv_val_LC_MESSAGES=no])])
   if test $gt_cv_val_LC_MESSAGES = yes; then    if test $gt_cv_val_LC_MESSAGES = yes; then
    AC_DEFINE(HAVE_LC_MESSAGES, 1,    AC_DEFINE([HAVE_LC_MESSAGES], [1],
       [Define if your <locale.h> file defines LC_MESSAGES.])        [Define if your <locale.h> file defines LC_MESSAGES.])
   fi    fi
 ])  ])

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>