[vlc-commits] Update to gettext 0.18.3.1, fix AC_CHECK_DECLS usage

Rémi Denis-Courmont git at videolan.org
Thu Sep 5 21:34:24 CEST 2013


vlc/vlc-2.1 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Sep  5 22:21:11 2013 +0300| [73a7a9668c7dbb5b76a7880dbac26aff29d869c9] | committer: Rémi Denis-Courmont

Update to gettext 0.18.3.1, fix AC_CHECK_DECLS usage

(cherry picked from commit d73a089667ec53904caed09b3966652e2229ef97)

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=73a7a9668c7dbb5b76a7880dbac26aff29d869c9
---

 m4/intl.m4 |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/m4/intl.m4 b/m4/intl.m4
index 959bd04..dffcd88 100644
--- a/m4/intl.m4
+++ b/m4/intl.m4
@@ -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 @@ AC_DEFUN([AM_INTL_SUBDIR],
 
   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 <stdio.h>])
+  AC_CHECK_DECLS([_snprintf, _snwprintf], , , [#include <stdio.h>])
 
   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 @@ AC_DEFUN([gt_INTL_SUBDIR_CORE],
   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 <stdio.h>])
+  AC_CHECK_DECLS([feof_unlocked, fgets_unlocked], , , [#include <stdio.h>])
 
   AM_ICONV
 



More information about the vlc-commits mailing list