w32/compat/posixfcn.c: Fix the forgotten OUTPUT_SYNC conditional.
job.h: Ditto, but in a comment.
+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.
# define RECORD_SYNC_MUTEX(m) (void)(m)
# endif
-#endif /* !OUTPUT_SYNC */
+#endif /* !NO_OUTPUT_SYNC */
/* Structure describing a running or dead child process. */
#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. */
return 0;
}
-#endif /* OUTPUT_SYNC */
+#endif /* !NO_OUTPUT_SYNC */
#if MAKE_LOAD