summaryrefslogtreecommitdiff
path: root/m4/malloc_h.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2020-12-31 22:16:52 +0100
committerBruno Haible <bruno@clisp.org>2020-12-31 22:16:52 +0100
commitee523efd38e33c3d7acb77ea8c5941c88d54a8cb (patch)
treebf13b90cebe1dd9f3b96bf690d562aa329a20804 /m4/malloc_h.m4
parentd943f7dc4666bea8ae6747e6240208f2eea348fa (diff)
downloadgnulib-ee523efd38e33c3d7acb77ea8c5941c88d54a8cb.tar.gz
malloc-h: New module.
* lib/malloc.in.h: New file. * m4/malloc_h.m4: New file. * modules/malloc-h: New file. * doc/glibc-headers/malloc.texi: New file. * doc/gnulib.texi (Glibc Header File Substitutes): Include it.
Diffstat (limited to 'm4/malloc_h.m4')
-rw-r--r--m4/malloc_h.m447
1 files changed, 47 insertions, 0 deletions
diff --git a/m4/malloc_h.m4 b/m4/malloc_h.m4
new file mode 100644
index 0000000000..f8cd17018b
--- /dev/null
+++ b/m4/malloc_h.m4
@@ -0,0 +1,47 @@
+# malloc_h.m4 serial 1
+dnl Copyright (C) 2020 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.
+
+dnl Written by Bruno Haible.
+
+AC_DEFUN([gl_MALLOC_H],
+[
+ dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+ dnl once only, before all statements that occur in other macros.
+ AC_REQUIRE([gl_MALLOC_H_DEFAULTS])
+
+ gl_CHECK_NEXT_HEADERS([malloc.h])
+ if test $ac_cv_header_malloc_h = yes; then
+ HAVE_MALLOC_H=1
+ else
+ HAVE_MALLOC_H=0
+ fi
+ AC_SUBST([HAVE_MALLOC_H])
+
+ dnl Check for declarations of anything we want to poison if the
+ dnl corresponding gnulib module is not in use.
+ gl_WARN_ON_USE_PREPARE([[
+#if HAVE_MALLOC_H
+# include <malloc.h>
+#endif
+ ]], [memalign])
+])
+
+AC_DEFUN([gl_MALLOC_MODULE_INDICATOR],
+[
+ dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
+ AC_REQUIRE([gl_MALLOC_H_DEFAULTS])
+ gl_MODULE_INDICATOR_SET_VARIABLE([$1])
+ dnl Define it also as a C macro, for the benefit of the unit tests.
+ gl_MODULE_INDICATOR_FOR_TESTS([$1])
+])
+
+AC_DEFUN([gl_MALLOC_H_DEFAULTS],
+[
+ GNULIB_MEMALIGN=0; AC_SUBST([GNULIB_MEMALIGN])
+ dnl Assume proper GNU behavior unless another module says otherwise.
+ HAVE_MEMALIGN=1; AC_SUBST([HAVE_MEMALIGN])
+ REPLACE_MEMALIGN=0; AC_SUBST([REPLACE_MEMALIGN])
+])