diff options
author | Paul Smith <psmith@gnu.org> | 2005-06-12 22:22:07 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-06-12 22:22:07 +0000 |
commit | 467115baae38eba41b3800b4e0e84afb7f3ec99b (patch) | |
tree | d9f41f1e367ec952a9ce65dc21c30eebe0a7bcd0 /configure.in | |
parent | 974d14ac4fc8dc736a4e2c9876d85d3c295b1196 (diff) | |
download | gunmake-467115baae38eba41b3800b4e0e84afb7f3ec99b.tar.gz |
Fix Savannah bug # 1328: if stdout is redirected to a full filesystem, we
check for this and exit with an error.
The closeout.c version from gnulib pulls in too much other stuff, and
gnulib requires an ANSI C 89 compliant compiler, while GNU make (so far)
still wants to work on K&R.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 783d180..2c981c9 100644 --- a/configure.in +++ b/configure.in @@ -137,7 +137,7 @@ AC_CHECK_FUNCS( memcpy memmove strchr strdup mkstemp mktemp fdopen \ bsd_signal dup2 getcwd realpath sigsetmask sigaction \ getgroups seteuid setegid setlinebuf setreuid setregid \ getrlimit setrlimit setvbuf pipe strerror strsignal \ - lstat readlink) + lstat readlink atexit) AC_FUNC_SETVBUF_REVERSED |