summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-04-10 20:36:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-04-10 20:36:11 -0700
commit7b825e541377fc8a6f6ec8e490187c7b19bda6c3 (patch)
tree2c6aa914a917c44ffd88e0d5afa0a4822728dbd6 /stream.c
parent38abf85defad8a15899687e35c7037bb2ddf42b0 (diff)
downloadtxr-7b825e541377fc8a6f6ec8e490187c7b19bda6c3.tar.gz
txr-7b825e541377fc8a6f6ec8e490187c7b19bda6c3.tar.bz2
txr-7b825e541377fc8a6f6ec8e490187c7b19bda6c3.zip
More NetBSD porting.
* Makefile (EXTRA_FLAGS): Handy new variable for additional ad-hoc CFLAGS. Needed by a new test in configure. * configure: Check for annoying warnings about char being used as an array subscript when calling the macros from <ctype.h>. If this occurs, suppress it by #undef-ing the macros. (lang_flags): Switching fromm _XOPEN_SOURCE to _XOPEN_SOURCE=2 because this is needed on NetBSD to obtain declarations of popen and pclose. * stream.c (pipe_close): If we don't have the WIFCONTINUED macro, then define it to expand to zero. It's absent on NetBSD and they already seem to have a hack for this because there is a warning about the function not being defined, but then the program links anyway. Let's do it properly and not rely on their hack.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index e877d200..0201c3eb 100644
--- a/stream.c
+++ b/stream.c
@@ -284,6 +284,9 @@ static val pipe_close(val stream, val throw_on_error)
lit("unable to obtain status of command ~a: ~a/~s"),
stream, num(errno), string_utf8(strerror(errno)), nao);
#ifdef HAVE_SYS_WAIT
+#ifndef WIFCONTINUED
+#define WIFCONTINUED(X) 0
+#endif
} else if (WIFEXITED(status)) {
int exitstatus = WEXITSTATUS(status);
uw_throwf(process_error_s, lit("pipe ~a terminated with status ~a"),