summaryrefslogtreecommitdiffstats
path: root/gl/m4/snprintf.m4
diff options
context:
space:
mode:
Diffstat (limited to 'gl/m4/snprintf.m4')
-rw-r--r--gl/m4/snprintf.m424
1 files changed, 20 insertions, 4 deletions
diff --git a/gl/m4/snprintf.m4 b/gl/m4/snprintf.m4
index 432e037..f21200d 100644
--- a/gl/m4/snprintf.m4
+++ b/gl/m4/snprintf.m4
@@ -1,13 +1,29 @@
1# snprintf.m4 serial 2 1# snprintf.m4 serial 4
2dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. 2dnl Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation 3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it, 4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved. 5dnl with or without modifications, as long as this notice is preserved.
6 6
7AC_DEFUN([gl_FUNC_SNPRINTF], 7AC_DEFUN([gl_FUNC_SNPRINTF],
8[ 8[
9 AC_REPLACE_FUNCS(snprintf) 9 AC_REQUIRE([gl_STDIO_H_DEFAULTS])
10 AC_CHECK_DECLS_ONCE(snprintf) 10 AC_CHECK_FUNCS([snprintf])
11 if test $ac_cv_func_snprintf = no; then
12 gl_REPLACE_SNPRINTF
13 fi
14 AC_CHECK_DECLS_ONCE([snprintf])
15 if test $ac_cv_have_decl_snprintf = no; then
16 HAVE_DECL_SNPRINTF=0
17 fi
18])
19
20AC_DEFUN([gl_REPLACE_SNPRINTF],
21[
22 AC_REQUIRE([gl_STDIO_H_DEFAULTS])
23 AC_LIBOBJ([snprintf])
24 if test $ac_cv_func_snprintf = yes; then
25 REPLACE_SNPRINTF=1
26 fi
11 gl_PREREQ_SNPRINTF 27 gl_PREREQ_SNPRINTF
12]) 28])
13 29