diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-09-23 10:56:51 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-09-23 10:56:51 +0300 |
commit | 55a0c0e414f3f3f2fd30b5297f072b5a973d400a (patch) | |
tree | 0f3624ca6eff06aa1bcd8bdb66c28b83deeec35c /w32/compat/posixfcn.c | |
parent | 8a3436c65df985bfb28a4051ae9291fdddc2a310 (diff) | |
download | gunmake-55a0c0e414f3f3f2fd30b5297f072b5a973d400a.tar.gz |
Fix broken w32 build due to OUTPUT_SYNC -> NO_OUTPUT_SYNC inversion.
w32/compat/posixfcn.c: Fix the forgotten OUTPUT_SYNC conditional.
job.h: Ditto, but in a comment.
Diffstat (limited to 'w32/compat/posixfcn.c')
-rw-r--r-- | w32/compat/posixfcn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/w32/compat/posixfcn.c b/w32/compat/posixfcn.c index 9acc1b2..627fc50 100644 --- a/w32/compat/posixfcn.c +++ b/w32/compat/posixfcn.c @@ -26,7 +26,7 @@ this program. If not, see <http://www.gnu.org/licenses/>. */ #include "makeint.h" #include "job.h" -#ifdef OUTPUT_SYNC +#ifdef NO_OUTPUT_SYNC /* Support for OUTPUT_SYNC and related functionality. */ /* Emulation of fcntl that supports only F_GETFD and F_SETLKW. */ @@ -257,7 +257,7 @@ same_stream (FILE *f1, FILE *f2) return 0; } -#endif /* OUTPUT_SYNC */ +#endif /* !NO_OUTPUT_SYNC */ #if MAKE_LOAD |