Get bash to not use GNU malloc. This solves the calloc() weirdness

in -current.  Closes PR#3971
This commit is contained in:
Jordan K. Hubbard 1997-06-27 18:00:09 +00:00
parent 9af70a5343
commit beb1d2e914
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7099

View File

@ -0,0 +1,19 @@
*** machines.h.orig Fri Jun 27 10:54:20 1997
--- machines.h Fri Jun 27 10:54:22 1997
***************
*** 63,69 ****
some machines, our malloc () cannot be used (because of library
conflicts, for example), and for those, you should specifically
#undef USE_GNU_MALLOC in the machine description. */
! #define USE_GNU_MALLOC
/* This causes the Gnu malloc library (from glibc) to be used. */
/* #define USE_GNU_MALLOC_LIBRARY */
--- 63,69 ----
some machines, our malloc () cannot be used (because of library
conflicts, for example), and for those, you should specifically
#undef USE_GNU_MALLOC in the machine description. */
! #undef USE_GNU_MALLOC
/* This causes the Gnu malloc library (from glibc) to be used. */
/* #define USE_GNU_MALLOC_LIBRARY */