diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2005-10-29 18:24:12 +1000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2005-10-29 21:40:05 +1000 |
commit | f97c2127a619c956f0a330f272877a3fa4074f94 (patch) | |
tree | 69abddf606a01c61ef79ebd5c33abf9306b5a4d9 /ChangeLog | |
parent | [SIGNAL] Added default implementation of killpg (diff) | |
download | dash-f97c2127a619c956f0a330f272877a3fa4074f94.tar.gz dash-f97c2127a619c956f0a330f272877a3fa4074f94.zip |
[BUILTIN] Disable ulimit if there is no getrlimit
For systems without getrlimit (e.g., klibc) we will disable ulimit. In order to achieve this, builtins.def is now produced by cpp which allows us to use macros such as HAVE_GETRLIMIT in it. Thie also means that we can get rid of the cflags parsing code in mkbuiltins.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 1940a8c..90ea632 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,7 @@ * Added missing system.h inclusion for mempcpy. * Added default implementation of strsignal. * Added default implementation of killpg. + * Disable ulimit if there is no getrlimit. 2005-10-26 Herbert Xu <herbert@gondor.apana.org.au> |