summaryrefslogtreecommitdiff
path: root/m4/vasprintf.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-07-10 11:23:31 +0000
committerJim Meyering <jim@meyering.net>2003-07-10 11:23:31 +0000
commit14031cbf92f26666723d291ec751585cb6f390b6 (patch)
treecca144d9aa49cf192237d13eb44684e1573d0aac /m4/vasprintf.m4
parentf928e162807ff9b8b28796a3ef704f0df3cf6810 (diff)
downloadcoreutils-14031cbf92f26666723d291ec751585cb6f390b6.tar.xz
New files, in support of new asprintf use. From gnulib.
Diffstat (limited to 'm4/vasprintf.m4')
-rw-r--r--m4/vasprintf.m427
1 files changed, 27 insertions, 0 deletions
diff --git a/m4/vasprintf.m4 b/m4/vasprintf.m4
new file mode 100644
index 000000000..1d00d938d
--- /dev/null
+++ b/m4/vasprintf.m4
@@ -0,0 +1,27 @@
+# vasprintf.m4 serial 1
+dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
+dnl This file is free software, distributed under the terms of the GNU
+dnl General Public License. As a special exception to the GNU General
+dnl Public License, this file may be distributed as part of a program
+dnl that contains a configuration script generated by Autoconf, under
+dnl the same distribution terms as the rest of that program.
+
+AC_DEFUN([gl_FUNC_VASPRINTF],
+[
+ AC_REPLACE_FUNCS(vasprintf)
+ if test $ac_cv_func_vasprintf = no; then
+ AC_LIBOBJ(asprintf)
+ gl_PREREQ_VASPRINTF
+ gl_PREREQ_ASPRINTF
+ fi
+])
+
+# Prerequisites of lib/vasprintf.c.
+AC_DEFUN([gl_PREREQ_VASPRINTF],
+[
+])
+
+# Prerequisites of lib/asprintf.c.
+AC_DEFUN([gl_PREREQ_ASPRINTF],
+[
+])