From: Eli Zaretskii Date: Mon, 23 Sep 2013 07:56:51 +0000 (+0300) Subject: Fix broken w32 build due to OUTPUT_SYNC -> NO_OUTPUT_SYNC inversion. X-Git-Tag: 3.99.93~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55a0c0e414f3f3f2fd30b5297f072b5a973d400a;p=thirdparty%2Fmake.git 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. --- diff --git a/ChangeLog b/ChangeLog index adc87e1c..c31b726a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-09-23 Eli Zaretskii + + * w32/compat/posixfcn.c: Fix the forgotten OUTPUT_SYNC conditional. + + * job.h: Ditto, but in a comment. + 2013-09-22 Paul Smith * configure.ac: Update version to 3.99.92. diff --git a/job.h b/job.h index 29652fce..c97f7c0d 100644 --- a/job.h +++ b/job.h @@ -80,7 +80,7 @@ typedef int sync_handle_t; /* file descriptor */ # define RECORD_SYNC_MUTEX(m) (void)(m) # endif -#endif /* !OUTPUT_SYNC */ +#endif /* !NO_OUTPUT_SYNC */ /* Structure describing a running or dead child process. */ diff --git a/w32/compat/posixfcn.c b/w32/compat/posixfcn.c index 9acc1b28..627fc506 100644 --- a/w32/compat/posixfcn.c +++ b/w32/compat/posixfcn.c @@ -26,7 +26,7 @@ this program. If not, see . */ #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