diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-05-22 18:29:01 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-05-22 18:29:01 +0900 |
commit | 6aae0e2ad2fdb5cc87358d7c4337e145c0b99fe9 (patch) | |
tree | 9076d8f060478d6213a1c57599316b073b131847 /compat/simple-ipc/ipc-win32.c | |
parent | Merge branch 'wm/rev-parse-path-format-wo-arg' (diff) | |
parent | simple-ipc: correct ifdefs when NO_PTHREADS is defined (diff) | |
download | tgif-6aae0e2ad2fdb5cc87358d7c4337e145c0b99fe9.tar.xz |
Merge branch 'jh/simple-ipc-sans-pthread'
The "simple-ipc" did not compile without pthreads support, but the
build procedure was not properly account for it.
* jh/simple-ipc-sans-pthread:
simple-ipc: correct ifdefs when NO_PTHREADS is defined
Diffstat (limited to 'compat/simple-ipc/ipc-win32.c')
-rw-r--r-- | compat/simple-ipc/ipc-win32.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/compat/simple-ipc/ipc-win32.c b/compat/simple-ipc/ipc-win32.c index 8f89c02037..8dc7bda087 100644 --- a/compat/simple-ipc/ipc-win32.c +++ b/compat/simple-ipc/ipc-win32.c @@ -4,8 +4,12 @@ #include "pkt-line.h" #include "thread-utils.h" -#ifndef GIT_WINDOWS_NATIVE -#error This file can only be compiled on Windows +#ifndef SUPPORTS_SIMPLE_IPC +/* + * This source file should only be compiled when Simple IPC is supported. + * See the top-level Makefile. + */ +#error SUPPORTS_SIMPLE_IPC not defined #endif static int initialize_pipe_name(const char *path, wchar_t *wpath, size_t alloc) |