pkg-monitoring-plugins/gl/m4/vasprintf.m4

47 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2013-11-26 22:55:28 +00:00
# vasprintf.m4 serial 6
2023-10-18 07:29:37 +00:00
dnl Copyright (C) 2002-2003, 2006-2007, 2009-2023 Free Software Foundation,
2013-11-26 22:57:29 +00:00
dnl Inc.
2013-11-26 22:53:44 +00:00
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([gl_FUNC_VASPRINTF],
[
2013-11-26 22:55:28 +00:00
AC_CHECK_FUNCS([vasprintf])
2013-11-26 22:53:44 +00:00
if test $ac_cv_func_vasprintf = no; then
2013-11-26 22:55:28 +00:00
gl_REPLACE_VASPRINTF
2013-11-26 22:53:44 +00:00
fi
])
2013-11-26 22:55:28 +00:00
AC_DEFUN([gl_REPLACE_VASPRINTF],
[
AC_LIBOBJ([vasprintf])
AC_LIBOBJ([asprintf])
AC_REQUIRE([gl_STDIO_H_DEFAULTS])
if test $ac_cv_func_vasprintf = yes; then
REPLACE_VASPRINTF=1
else
HAVE_VASPRINTF=0
fi
gl_PREREQ_VASPRINTF_H
gl_PREREQ_VASPRINTF
gl_PREREQ_ASPRINTF
])
# Prerequisites of the vasprintf portion of lib/stdio.h.
2013-11-26 22:53:44 +00:00
AC_DEFUN([gl_PREREQ_VASPRINTF_H],
[
dnl Persuade glibc <stdio.h> to declare asprintf() and vasprintf().
2013-11-26 22:55:28 +00:00
AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
2013-11-26 22:53:44 +00:00
])
# Prerequisites of lib/vasprintf.c.
AC_DEFUN([gl_PREREQ_VASPRINTF],
[
])
# Prerequisites of lib/asprintf.c.
AC_DEFUN([gl_PREREQ_ASPRINTF],
[
])