diff options
author | mp <mp@FreeBSD.org> | 2007-05-16 21:22:38 +0000 |
---|---|---|
committer | mp <mp@FreeBSD.org> | 2007-05-16 21:22:38 +0000 |
commit | 9df330a802b9314672cee425a8611d82298a094d (patch) | |
tree | b524bdaa71824c33d739e38278c7697eaec12b3c /bin | |
parent | c6ef292874ce2df6fe29e0ac352d062ad031f569 (diff) | |
download | FreeBSD-src-9df330a802b9314672cee425a8611d82298a094d.zip FreeBSD-src-9df330a802b9314672cee425a8611d82298a094d.tar.gz |
Work around a vendor issue that was causing the builtin malloc to be
used instead of the system malloc.
Submitted by: ume
Diffstat (limited to 'bin')
-rw-r--r-- | bin/csh/config.h | 3 | ||||
-rw-r--r-- | bin/csh/config_p.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bin/csh/config.h b/bin/csh/config.h index c9b01ef..0971ffa 100644 --- a/bin/csh/config.h +++ b/bin/csh/config.h @@ -237,3 +237,6 @@ #ifndef NO_NLS_CATALOGS #define NLS_CATALOGS #endif + +/* Work around a vendor issue where config_f.h is #undef'ing this setting */ +#define SYSMALLOC diff --git a/bin/csh/config_p.h b/bin/csh/config_p.h index 6de288b..8c29053 100644 --- a/bin/csh/config_p.h +++ b/bin/csh/config_p.h @@ -82,8 +82,6 @@ #if defined(__FreeBSD__) #define NLS_BUGS #define BSD_STYLE_COLORLS -/* we want to use the system malloc when we install as /bin/csh */ -#define SYSMALLOC /* Use LC_MESSAGES locale category to open the message catalog */ #define MCLoadBySet NL_CAT_LOCALE #define BUFSIZE 8192 |