aaf5d2c2c3bb313eb5a43eabb038a999f46b8ce1
[gnulib.git] / m4 / vsnprintf-posix.m4
1 # vsnprintf-posix.m4 serial 9
2 dnl Copyright (C) 2007 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_VSNPRINTF_POSIX],
8 [
9   AC_REQUIRE([gl_EOVERFLOW])
10   AC_REQUIRE([gl_PRINTF_SIZES_C99])
11   AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
12   AC_REQUIRE([gl_PRINTF_INFINITE])
13   AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
14   AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
15   AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
16   AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
17   AC_REQUIRE([gl_PRINTF_POSITIONS])
18   AC_REQUIRE([gl_PRINTF_FLAG_GROUPING])
19   AC_REQUIRE([gl_PRINTF_FLAG_ZERO])
20   AC_REQUIRE([gl_PRINTF_ENOMEM])
21   gl_cv_func_vsnprintf_posix=no
22   AC_CHECK_FUNCS([vsnprintf])
23   if test $ac_cv_func_vsnprintf = yes; then
24     dnl Assume that if vsnprintf() exists, snprintf() also exists.
25     gl_SNPRINTF_TRUNCATION_C99
26     gl_SNPRINTF_RETVAL_C99
27     gl_SNPRINTF_DIRECTIVE_N
28     gl_VSNPRINTF_ZEROSIZE_C99
29     case "$gl_cv_func_printf_sizes_c99" in
30       *yes)
31         case "$gl_cv_func_printf_long_double" in
32           *yes)
33             case "$gl_cv_func_printf_infinite" in
34               *yes)
35                 case "$gl_cv_func_printf_infinite_long_double" in
36                   *yes)
37                     case "$gl_cv_func_printf_directive_a" in
38                       *yes)
39                         case "$gl_cv_func_printf_directive_f" in
40                           *yes)
41                             case "$gl_cv_func_printf_directive_n" in
42                               *yes)
43                                 case "$gl_cv_func_printf_positions" in
44                                   *yes)
45                                     case "$gl_cv_func_printf_flag_grouping" in
46                                       *yes)
47                                         case "$gl_cv_func_printf_flag_zero" in
48                                           *yes)
49                                             case "$gl_cv_func_printf_enomem" in
50                                               *yes)
51                                                 case "$gl_cv_func_snprintf_truncation_c99" in
52                                                   *yes)
53                                                     case "$gl_cv_func_snprintf_retval_c99" in
54                                                       *yes)
55                                                         case "$gl_cv_func_snprintf_directive_n" in
56                                                           *yes)
57                                                             case "$gl_cv_func_vsnprintf_zerosize_c99" in
58                                                               *yes)
59                                                                 # vsnprintf exists and is
60                                                                 # already POSIX compliant.
61                                                                 gl_cv_func_vsnprintf_posix=yes
62                                                                 ;;
63                                                             esac
64                                                             ;;
65                                                         esac
66                                                         ;;
67                                                     esac
68                                                     ;;
69                                                 esac
70                                                 ;;
71                                             esac
72                                             ;;
73                                         esac
74                                         ;;
75                                     esac
76                                     ;;
77                                 esac
78                                 ;;
79                             esac
80                             ;;
81                         esac
82                         ;;
83                     esac
84                     ;;
85                 esac
86                 ;;
87             esac
88             ;;
89         esac
90         ;;
91     esac
92   fi
93   if test $gl_cv_func_vsnprintf_posix = no; then
94     gl_PREREQ_VASNPRINTF_LONG_DOUBLE
95     gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE
96     gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE
97     gl_PREREQ_VASNPRINTF_DIRECTIVE_A
98     gl_PREREQ_VASNPRINTF_DIRECTIVE_F
99     gl_PREREQ_VASNPRINTF_FLAG_GROUPING
100     gl_PREREQ_VASNPRINTF_FLAG_ZERO
101     gl_PREREQ_VASNPRINTF_ENOMEM
102     gl_REPLACE_VASNPRINTF
103     gl_REPLACE_VSNPRINTF
104   fi
105 ])