mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
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.
14 lines
345 B
Makefile
14 lines
345 B
Makefile
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
|
|
|
AUTOMAKE_OPTIONS = ansi2knr
|
|
|
|
noinst_LIBRARIES = libbison.a
|
|
|
|
INCLUDES = -I.. -I$(srcdir) -I../intl
|
|
|
|
libbison_a_SOURCES = getopt.c getopt1.c xmalloc.c
|
|
noinst_HEADERS = getopt.h xalloc.h
|
|
|
|
libbison_a_LIBADD = @LIBOBJS@ @ALLOCA@
|
|
libbison_a_DEPENDENCIES = $(libbison_a_LIBADD)
|