summaryrefslogtreecommitdiff
path: root/m4/realloc.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
commitc4f6d1bf920c36664ba7737209de000e49178918 (patch)
tree92ed4a0b2df9906be703158f23b4bd9264edcc4d /m4/realloc.m4
parent7b300269f2db82323dd6330c15ed5a449a46a431 (diff)
downloadgnulib-c4f6d1bf920c36664ba7737209de000e49178918.tar.gz
Add insurance: tell xmalloc.c we've done the test.
Diffstat (limited to 'm4/realloc.m4')
-rw-r--r--m4/realloc.m411
1 files changed, 11 insertions, 0 deletions
diff --git a/m4/realloc.m4 b/m4/realloc.m4
index 431ba5bb8e..aba1984064 100644
--- a/m4/realloc.m4
+++ b/m4/realloc.m4
@@ -12,6 +12,17 @@ dnl
AC_DEFUN(jm_FUNC_REALLOC,
[
+ 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_REALLOC_CHECK)
+ fi
+ dnl xmalloc.c requires that this symbol be defined so it doesn't
+ dnl mistakenly use a broken realloc -- as it might if this test were omitted.
+ ac_kludge=HAVE_DONE_WORKING_REALLOC_CHECK
+ AC_DEFINE_UNQUOTED($ac_kludge)
+
AC_CACHE_CHECK([for working realloc], jm_cv_func_working_realloc,
[AC_TRY_RUN([
char *realloc ();