INN commit: trunk/m4 (inet-ntoa.m4 snprintf.m4 vamacros.m4)
INN Commit
rra at isc.org
Sat Sep 21 09:50:41 UTC 2013
Date: Saturday, September 21, 2013 @ 02:50:41
Author: iulius
Revision: 9541
update to latest upstream version of rra-c-util 4.9
Modified:
trunk/m4/inet-ntoa.m4
trunk/m4/snprintf.m4
trunk/m4/vamacros.m4
--------------+
inet-ntoa.m4 | 19 +++++++++++--------
snprintf.m4 | 13 +++++++++----
vamacros.m4 | 15 ++++++++++-----
3 files changed, 30 insertions(+), 17 deletions(-)
Modified: inet-ntoa.m4
===================================================================
--- inet-ntoa.m4 2013-09-21 09:49:34 UTC (rev 9540)
+++ inet-ntoa.m4 2013-09-21 09:50:41 UTC (rev 9541)
@@ -1,4 +1,4 @@
-dnl inet-ntoa.m4 -- Check for a working inet_ntoa.
+dnl Check for a working inet_ntoa.
dnl $Id$
dnl
dnl Check whether inet_ntoa is present and working. Since calling inet_ntoa
@@ -7,13 +7,16 @@
dnl Provides INN_FUNC_INET_NTOA and defines HAVE_INET_NTOA if inet_ntoa is
dnl present and working.
dnl
-dnl Copyright 2008, 2009 Board of Trustees, Leland Stanford Jr. University
-dnl Copyright (c) 2004, 2005, 2006, 2007
-dnl by Internet Systems Consortium, Inc. ("ISC")
-dnl Copyright (c) 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-dnl 2002, 2003 by The Internet Software Consortium and Rich Salz
+dnl The canonical version of this file is maintained in the rra-c-util
+dnl package, available at <http://www.eyrie.org/~eagle/software/rra-c-util/>.
dnl
-dnl See LICENSE for licensing terms.
+dnl Copyright 1999, 2000, 2001, 2003 Russ Allbery <rra at stanford.edu>
+dnl Copyright 2008, 2009
+dnl The Board of Trustees of the Leland Stanford Junior University
+dnl
+dnl This file is free software; the authors give unlimited permission to copy
+dnl and/or distribute it, with or without modifications, as long as this
+dnl notice is preserved.
dnl Source used by INN_FUNC_INET_NTOA.
AC_DEFUN([_INN_FUNC_INET_NTOA_SOURCE], [[
@@ -39,7 +42,7 @@
[inn_cv_func_inet_ntoa_works=yes],
[inn_cv_func_inet_ntoa_works=no],
[inn_cv_func_inet_ntoa_works=no])])
- AS_IF([test "$inn_cv_func_inet_ntoa_works" = yes],
+ AS_IF([test x"$inn_cv_func_inet_ntoa_works" = xyes],
[AC_DEFINE([HAVE_INET_NTOA], 1,
[Define if your system has a working inet_ntoa function.])],
[AC_LIBOBJ([inet_ntoa])])])
Modified: snprintf.m4
===================================================================
--- snprintf.m4 2013-09-21 09:49:34 UTC (rev 9540)
+++ snprintf.m4 2013-09-21 09:50:41 UTC (rev 9541)
@@ -1,4 +1,4 @@
-dnl snprintf.m4 -- Test for a working C99 snprintf.
+dnl Test for a working C99 snprintf.
dnl $Id$
dnl
dnl Check for a working snprintf. Some systems have an snprintf that doesn't
@@ -10,11 +10,16 @@
dnl Provides INN_FUNC_SNPRINTF, which adds snprintf.o to LIBOBJS unless a
dnl fully working snprintf is found.
dnl
+dnl The canonical version of this file is maintained in the rra-c-util
+dnl package, available at <http://www.eyrie.org/~eagle/software/rra-c-util/>.
+dnl
dnl Written by Russ Allbery <rra at stanford.edu>
dnl Copyright 2006, 2008, 2009
-dnl Board of Trustees, Leland Stanford Jr. University
+dnl The Board of Trustees of the Leland Stanford Junior University
dnl
-dnl See LICENSE for licensing terms.
+dnl This file is free software; the authors give unlimited permission to copy
+dnl and/or distribute it, with or without modifications, as long as this
+dnl notice is preserved.
dnl Source used by INN_FUNC_SNPRINTF.
AC_DEFUN([_INN_FUNC_SNPRINTF_SOURCE], [[
@@ -50,7 +55,7 @@
[inn_cv_func_snprintf_works=yes],
[inn_cv_func_snprintf_works=no],
[inn_cv_func_snprintf_works=no])])
- AS_IF([test "$inn_cv_func_snprintf_works" = yes],
+ AS_IF([test x"$inn_cv_func_snprintf_works" = xyes],
[AC_DEFINE([HAVE_SNPRINTF], 1,
[Define if your system has a working snprintf function.])],
[AC_LIBOBJ([snprintf])])])
Modified: vamacros.m4
===================================================================
--- vamacros.m4 2013-09-21 09:49:34 UTC (rev 9540)
+++ vamacros.m4 2013-09-21 09:50:41 UTC (rev 9541)
@@ -1,4 +1,4 @@
-dnl vamacros.m4 -- Check for support for variadic macros.
+dnl Check for support for variadic macros.
dnl $Id$
dnl
dnl This file defines two macros for probing for compiler support for variadic
@@ -14,11 +14,16 @@
dnl
dnl They set HAVE_C99_VAMACROS or HAVE_GNU_VAMACROS as appropriate.
dnl
+dnl The canonical version of this file is maintained in the rra-c-util
+dnl package, available at <http://www.eyrie.org/~eagle/software/rra-c-util/>.
+dnl
dnl Written by Russ Allbery <rra at stanford.edu>
dnl Copyright 2006, 2008, 2009
-dnl Board of Trustees, Leland Stanford Jr. University
+dnl The Board of Trustees of the Leland Stanford Junior University
dnl
-dnl See LICENSE for licensing terms.
+dnl This file is free software; the authors give unlimited permission to copy
+dnl and/or distribute it, with or without modifications, as long as this
+dnl notice is preserved.
AC_DEFUN([_INN_C_C99_VAMACROS_SOURCE], [[
#include <stdio.h>
@@ -37,7 +42,7 @@
[AC_COMPILE_IFELSE([AC_LANG_SOURCE([_INN_C_C99_VAMACROS_SOURCE])],
[inn_cv_c_c99_vamacros=yes],
[inn_cv_c_c99_vamacros=no])])
- AS_IF([test $inn_cv_c_c99_vamacros = yes],
+ AS_IF([test x"$inn_cv_c_c99_vamacros" = xyes],
[AC_DEFINE([HAVE_C99_VAMACROS], 1,
[Define if the compiler supports C99 variadic macros.])])])
@@ -58,6 +63,6 @@
[AC_COMPILE_IFELSE([AC_LANG_SOURCE([_INN_C_GNU_VAMACROS_SOURCE])],
[inn_cv_c_gnu_vamacros=yes],
[inn_cv_c_gnu_vamacros=no])])
- AS_IF([test $inn_cv_c_gnu_vamacros = yes],
+ AS_IF([test x"$inn_cv_c_gnu_vamacros" = xyes],
[AC_DEFINE([HAVE_GNU_VAMACROS], 1,
[Define if the compiler supports GNU-style variadic macros.])])])
More information about the inn-committers
mailing list