# HG changeset patch # User Daiki Ueno # Date 1377332975 -7200 # Node ID eedfb62ad2f7d3744a7a123f70dbaab2cb986bfe # Parent e39a6d4368b481119bcad975e63394a47996a85a gettext: update to version 0.18.3.1 * m4/intl.m4: Update from gettext-0.18.3.1, which fixes a misuse of AC_CHECK_DECLS. diff -r e39a6d4368b4 -r eedfb62ad2f7 ChangeLog --- a/ChangeLog Fri Aug 23 13:53:46 2013 -0700 +++ b/ChangeLog Sat Aug 24 10:29:35 2013 +0200 @@ -1,3 +1,8 @@ +2013-08-24 Daiki Ueno + + * m4/intl.m4: Update from gettext-0.18.3.1, which fixes a misuse + of AC_CHECK_DECLS. + 2013-08-23 Paul Eggert selinux-at: omit unnecessary include diff -r e39a6d4368b4 -r eedfb62ad2f7 m4/intl.m4 --- a/m4/intl.m4 Fri Aug 23 13:53:46 2013 -0700 +++ b/m4/intl.m4 Sat Aug 24 10:29:35 2013 +0200 @@ -1,4 +1,4 @@ -# intl.m4 serial 23 (gettext-0.18.3) +# intl.m4 serial 24 (gettext-0.18.3) dnl Copyright (C) 1995-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -61,7 +61,7 @@ dnl Use the _snprintf function only if it is declared (because on NetBSD it dnl is defined as a weak alias of snprintf; we prefer to use the latter). - AC_CHECK_DECLS([_snprintf _snwprintf], , , [#include ]) + AC_CHECK_DECLS([_snprintf, _snwprintf], , , [#include ]) dnl Use the *_unlocked functions only if they are declared. dnl (because some of them were defined without being declared in Solaris @@ -234,7 +234,7 @@ dnl (because some of them were defined without being declared in Solaris dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built dnl on Solaris 2.5.1 to run on Solaris 2.6). - AC_CHECK_DECLS([feof_unlocked fgets_unlocked], , , [#include ]) + AC_CHECK_DECLS([feof_unlocked, fgets_unlocked], , , [#include ]) AM_ICONV