summaryrefslogtreecommitdiff
path: root/m4/malloc.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-11-03 15:18:09 +0000
committerJim Meyering <jim@meyering.net>1997-11-03 15:18:09 +0000
commitcbd4a8af0f0379a127b96aaca7dbb77513bc7b58 (patch)
tree51876a737ba1232219d8d713750b52ab294b4611 /m4/malloc.m4
parent752325fc8efe1f918439adcc82f297908e348d5b (diff)
downloadcoreutils-cbd4a8af0f0379a127b96aaca7dbb77513bc7b58.tar.xz
Add insurance: tell xmalloc.c we've done the test.
Diffstat (limited to 'm4/malloc.m4')
-rw-r--r--m4/malloc.m411
1 files changed, 11 insertions, 0 deletions
diff --git a/m4/malloc.m4 b/m4/malloc.m4
index ec5939768..bd3cad466 100644
--- a/m4/malloc.m4
+++ b/m4/malloc.m4
@@ -12,6 +12,17 @@ dnl
AC_DEFUN(jm_FUNC_MALLOC,
[
+ if test x = y; then
+ dnl This code is deliberately never run via ./configure.
+ dnl FIXME: this is a gross hack to make autoheader put an entry
+ dnl for this symbol in config.h.in.
+ AC_CHECK_FUNCS(DONE_WORKING_MALLOC_CHECK)
+ fi
+ dnl xmalloc.c requires that this symbol be defined so it doesn't
+ dnl mistakenly use a broken malloc -- as it might if this test were omitted.
+ ac_kludge=HAVE_DONE_WORKING_MALLOC_CHECK
+ AC_DEFINE_UNQUOTED($ac_kludge)
+
AC_CACHE_CHECK([for working malloc], jm_cv_func_working_malloc,
[AC_TRY_RUN([
char *malloc ();