summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2000-10-02 08:48:32 +0000
committerAkim Demaille <akim@epita.fr>2000-10-02 08:48:32 +0000
commitd7913476c462b480f11e14b6829942f2691c6c01 (patch)
tree9239af2eba1cfc96298883dd5d3756f7e468d606 /configure.in
parent340ef489223a5d1f9c40674ea2973435cb8ecc1b (diff)
downloadbison-d7913476c462b480f11e14b6829942f2691c6c01.tar.gz
Use the more standard files `xalloc.h' and `xmalloc.c' instead of
Bison's `allocate.c' and `alloc.h'. This patch was surprisingly difficult and introduced a lot of core dump. It turns out that Bison used an implementation of `xmalloc' based on `calloc', and at various places it does depend upon the initialization to 0. I have not tried to isolate the pertinent places, and all the former calls to Bison's `xmalloc' are now using `XCALLOC'. Someday, someone should address this issue. * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove. * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New files. Adjust dependencies. * src/warshall.h: New file. Propagate.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index b7ef080a..41c5e279 100644
--- a/configure.in
+++ b/configure.in
@@ -64,7 +64,8 @@ AM_C_PROTOTYPES
# Checks for library functions.
AC_FUNC_ALLOCA
AC_CHECK_FUNCS(mkstemp setlocale)
-BISON_NEED_DECLARATIONS(calloc realloc)
+jm_FUNC_MALLOC
+jm_FUNC_REALLOC
ALL_LINGUAS="de es et fr ja nl ru"
AM_GNU_GETTEXT