diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-25 23:01:03 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-25 23:01:03 -0800 |
commit | 8ccaa53c2d6bf96aa1b7db291f880a8ee5900d2f (patch) | |
tree | 3f86dc81c6225958f1cd86c382669847b0a1c281 /stream.c | |
parent | d064b170315f3ba4615215930e6ffc27dc7de21e (diff) | |
download | txr-8ccaa53c2d6bf96aa1b7db291f880a8ee5900d2f.tar.gz txr-8ccaa53c2d6bf96aa1b7db291f880a8ee5900d2f.tar.bz2 txr-8ccaa53c2d6bf96aa1b7db291f880a8ee5900d2f.zip |
* configure: Make it an error to have implicit function declarations by
means of -Werror=implicit-function-declarations. Fix broken mkdir and
mknod tests. Regenerate config.make if we add -U__STRICT_ANSI__
to the compiler options, so that later tests benefit from this.
Regenerate config.make right away if adding -D_DARWIN_C_SOURCE.
This allows the makedev test to pass.
* stream.c: Include <sys/types.h> for makedev.
(mknod_wrap): Don't rely on makedev wrappers to be there; test.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -48,6 +48,9 @@ #if HAVE_WINDOWS_H #include <windows.h> #endif +#if HAVE_MAKEDEV +#include <sys/types.h> +#endif #include "lib.h" #include "gc.h" #include "signal.h" @@ -2471,9 +2474,15 @@ val mknod_wrap(val path, val mode, val dev) free(u8path); if (err < 0) +#if HAVE_MAKEDEV uw_throwf(file_error_s, lit("mknod ~a ~a ~a (~a:~a): ~a/~s"), path, mode, dev, major_wrap(dev), minor_wrap(dev), num(errno), string_utf8(strerror(errno)), nao); +#else + uw_throwf(file_error_s, lit("mknod ~a ~a ~a: ~a/~s"), + path, mode, dev, num(errno), + string_utf8(strerror(errno)), nao); +#endif return t; } |