diff options
author | jkh <jkh@FreeBSD.org> | 1997-06-28 02:00:09 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-06-28 02:00:09 +0800 |
commit | 7b2569962e87403804a31826fae506e9c43beadb (patch) | |
tree | 4528602b25762d4ed2b9cde93da3a0ea5cf9d56e /shells | |
parent | 0616d8700e3e3c386ffc6305d583ab46b8d94b2c (diff) | |
download | freebsd-ports-gnome-7b2569962e87403804a31826fae506e9c43beadb.tar.gz freebsd-ports-gnome-7b2569962e87403804a31826fae506e9c43beadb.tar.zst freebsd-ports-gnome-7b2569962e87403804a31826fae506e9c43beadb.zip |
Get bash to not use GNU malloc. This solves the calloc() weirdness
in -current. Closes PR#3971
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash1/files/patch-ah | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/shells/bash1/files/patch-ah b/shells/bash1/files/patch-ah new file mode 100644 index 000000000000..14fcc43adb85 --- /dev/null +++ b/shells/bash1/files/patch-ah @@ -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 */ |