diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/locale_h.m4 | 4 | ||||
-rw-r--r-- | m4/log.m4 | 4 | ||||
-rw-r--r-- | m4/log10.m4 | 4 | ||||
-rw-r--r-- | m4/log2.m4 | 4 | ||||
-rw-r--r-- | m4/log2f.m4 | 4 | ||||
-rw-r--r-- | m4/posix_spawn.m4 | 8 | ||||
-rw-r--r-- | m4/printf.m4 | 4 |
7 files changed, 16 insertions, 16 deletions
diff --git a/m4/locale_h.m4 b/m4/locale_h.m4 index 7426a6528b..db005a5b2e 100644 --- a/m4/locale_h.m4 +++ b/m4/locale_h.m4 @@ -1,4 +1,4 @@ -# locale_h.m4 serial 19 +# locale_h.m4 serial 20 dnl Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -17,7 +17,7 @@ AC_DEFUN([gl_LOCALE_H], dnl If <stddef.h> is replaced, then <locale.h> must also be replaced. AC_REQUIRE([gl_STDDEF_H]) - dnl Solaris 11 2011-11 defines the int_p_*, int_n_* members of 'struct lconv' + dnl Solaris 11.0 defines the int_p_*, int_n_* members of 'struct lconv' dnl only if _LCONV_C99 is defined. AC_REQUIRE([AC_CANONICAL_HOST]) case "$host_os" in @@ -1,4 +1,4 @@ -# log.m4 serial 5 +# log.m4 serial 6 dnl Copyright (C) 2011-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -48,7 +48,7 @@ int main (int argc, char *argv[]) { double (*my_log) (double) = argc ? log : dummy; /* Test log(negative). - This test fails on NetBSD 5.1, Solaris 11 2011-11. */ + This test fails on NetBSD 5.1, Solaris 11.0. */ double y = my_log (-1.0); if (numeric_equal (y, y)) return 1; diff --git a/m4/log10.m4 b/m4/log10.m4 index 8b1a34211d..a384481284 100644 --- a/m4/log10.m4 +++ b/m4/log10.m4 @@ -1,4 +1,4 @@ -# log10.m4 serial 5 +# log10.m4 serial 6 dnl Copyright (C) 2011-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -48,7 +48,7 @@ int main (int argc, char *argv[]) { double (*my_log10) (double) = argc ? log10 : dummy; /* Test log10(negative). - This test fails on NetBSD 5.1, Solaris 11 2011-11. */ + This test fails on NetBSD 5.1, Solaris 11.0. */ double y = my_log10 (-1.0); if (numeric_equal (y, y)) return 1; diff --git a/m4/log2.m4 b/m4/log2.m4 index d7e6d3a6e8..b47e5c5fb7 100644 --- a/m4/log2.m4 +++ b/m4/log2.m4 @@ -1,4 +1,4 @@ -# log2.m4 serial 4 +# log2.m4 serial 5 dnl Copyright (C) 2010-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -69,7 +69,7 @@ int main (int argc, char *argv[]) { double (*my_log2) (double) = argc ? log2 : dummy; /* Test log2(negative). - This test fails on NetBSD 5.1 and Solaris 11 2011-11. */ + This test fails on NetBSD 5.1 and Solaris 11.0. */ double y = my_log2 (-1.0); if (numeric_equal (y, y)) return 1; diff --git a/m4/log2f.m4 b/m4/log2f.m4 index e65db5455c..3cc6b1a3e4 100644 --- a/m4/log2f.m4 +++ b/m4/log2f.m4 @@ -1,4 +1,4 @@ -# log2f.m4 serial 4 +# log2f.m4 serial 5 dnl Copyright (C) 2010-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -70,7 +70,7 @@ int main (int argc, char *argv[]) { float (*my_log2f) (float) = argc ? log2f : dummy; /* Test log2f(negative). - This test fails on NetBSD 5.1 and Solaris 11 2011-11. */ + This test fails on NetBSD 5.1 and Solaris 11.0. */ float y = my_log2f (-1.0f); if (numeric_equal (y, y)) return 1; diff --git a/m4/posix_spawn.m4 b/m4/posix_spawn.m4 index 40131dcddf..47a6147cfe 100644 --- a/m4/posix_spawn.m4 +++ b/m4/posix_spawn.m4 @@ -1,4 +1,4 @@ -# posix_spawn.m4 serial 12 +# posix_spawn.m4 serial 13 dnl Copyright (C) 2008-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -410,7 +410,7 @@ AC_DEFUN([gl_FUNC_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE], if test $REPLACE_POSIX_SPAWN = 1; then REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE=1 else - dnl On Solaris 11 2011-11, posix_spawn_file_actions_addclose succeeds even + dnl On Solaris 11.0, posix_spawn_file_actions_addclose succeeds even dnl if the fd argument is out of range. AC_CACHE_CHECK([whether posix_spawn_file_actions_addclose works], [gl_cv_func_posix_spawn_file_actions_addclose_works], @@ -453,7 +453,7 @@ AC_DEFUN([gl_FUNC_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2], if test $REPLACE_POSIX_SPAWN = 1; then REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2=1 else - dnl On Solaris 11 2011-11, posix_spawn_file_actions_adddup2 succeeds even + dnl On Solaris 11.0, posix_spawn_file_actions_adddup2 succeeds even dnl if the fd argument is out of range. AC_CACHE_CHECK([whether posix_spawn_file_actions_adddup2 works], [gl_cv_func_posix_spawn_file_actions_adddup2_works], @@ -496,7 +496,7 @@ AC_DEFUN([gl_FUNC_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN], if test $REPLACE_POSIX_SPAWN = 1; then REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN=1 else - dnl On Solaris 11 2011-11, posix_spawn_file_actions_addopen succeeds even + dnl On Solaris 11.0, posix_spawn_file_actions_addopen succeeds even dnl if the fd argument is out of range. AC_CACHE_CHECK([whether posix_spawn_file_actions_addopen works], [gl_cv_func_posix_spawn_file_actions_addopen_works], diff --git a/m4/printf.m4 b/m4/printf.m4 index 5b4a50bae1..d227516426 100644 --- a/m4/printf.m4 +++ b/m4/printf.m4 @@ -1,4 +1,4 @@ -# printf.m4 serial 55 +# printf.m4 serial 56 dnl Copyright (C) 2003, 2007-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -1606,7 +1606,7 @@ dnl OpenBSD 3.9, 4.0 . . # # # # . # . # . # . # . dnl Cygwin 1.7.0 (2009) . . . # . . . ? . . . . . ? . . . . . . dnl Cygwin 1.5.25 (2008) . . . # # . . # . . . . . # . . . . . . dnl Cygwin 1.5.19 (2006) # . . # # # . # . # . # # # . . . . . . -dnl Solaris 11 2011-11 . . # # # . . # . . . # . . . . . . . . +dnl Solaris 11.0 . . # # # . . # . . . # . . . . . . . . dnl Solaris 10 . . # # # . . # . . . # # . . . . . . . dnl Solaris 2.6 ... 9 # . # # # # . # . . . # # . . . # . . . dnl Solaris 2.5.1 # . # # # # . # . . . # . . # # # # # # |