summaryrefslogtreecommitdiffstats
path: root/gnulib-local/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-01-14 10:54:19 +0100
committerBruno Haible <bruno@clisp.org>2010-01-14 10:54:19 +0100
commit2593357be0a21fc9604987bea6dfe12e3b8f9959 (patch)
tree676b8a7ac5492570248008e6251566a229e07a6c /gnulib-local/m4
parent98ec9caf67c053da44fba2d5ee5616e60a478ae2 (diff)
downloadexternal_gettext-2593357be0a21fc9604987bea6dfe12e3b8f9959.zip
external_gettext-2593357be0a21fc9604987bea6dfe12e3b8f9959.tar.gz
external_gettext-2593357be0a21fc9604987bea6dfe12e3b8f9959.tar.bz2
Use full 'vasnprintf' module from gnulib.
Diffstat (limited to 'gnulib-local/m4')
-rw-r--r--gnulib-local/m4/vasprintf.m432
1 files changed, 0 insertions, 32 deletions
diff --git a/gnulib-local/m4/vasprintf.m4 b/gnulib-local/m4/vasprintf.m4
deleted file mode 100644
index 80ad721..0000000
--- a/gnulib-local/m4/vasprintf.m4
+++ /dev/null
@@ -1,32 +0,0 @@
-# vasprintf.m4 serial 2
-dnl Copyright (C) 2002-2003, 2006-2007 Free Software Foundation, Inc.
-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],
-[
- AC_CHECK_FUNCS([vasprintf])
- if test $ac_cv_func_vasprintf = no; then
- gl_REPLACE_VASPRINTF
- fi
-])
-
-AC_DEFUN([gl_REPLACE_VASPRINTF],
-[
- AC_LIBOBJ([vasprintf])
- 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
-])
-
-# Prerequisites of the vasprintf portion of lib/stdio.h.
-AC_DEFUN([gl_PREREQ_VASPRINTF_H],
-[
- dnl Persuade glibc <stdio.h> to declare asprintf() and vasprintf().
- AC_REQUIRE([AC_GNU_SOURCE])
-])