]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Fix broken w32 build due to OUTPUT_SYNC -> NO_OUTPUT_SYNC inversion.
authorEli Zaretskii <eliz@gnu.org>
Mon, 23 Sep 2013 07:56:51 +0000 (10:56 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 23 Sep 2013 07:56:51 +0000 (10:56 +0300)
 w32/compat/posixfcn.c: Fix the forgotten OUTPUT_SYNC conditional.
 job.h: Ditto, but in a comment.

ChangeLog
job.h
w32/compat/posixfcn.c

index adc87e1cf3bfe3678b442b861b895a9656bcab10..c31b726a22436704455bbbfe950ecb00ad477294 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-09-23  Eli Zaretskii  <eliz@gnu.org>
+
+       * w32/compat/posixfcn.c: Fix the forgotten OUTPUT_SYNC conditional.
+
+       * job.h: Ditto, but in a comment.
+
 2013-09-22  Paul Smith  <psmith@gnu.org>
 
        * configure.ac: Update version to 3.99.92.
diff --git a/job.h b/job.h
index 29652fce7092f9a03cf9f8b06e5880d7a7430648..c97f7c0d6292f66be5d239497d70991cb1793305 100644 (file)
--- 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.  */
 
index 9acc1b286812ec98765ffe1e41d127281c8c178f..627fc506e4c66864e9ea2983d91ce08bcf53146f 100644 (file)
@@ -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