Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hostetler <jeffhost@microsoft.com>2021-03-16 00:08:23 +0300
committerJunio C Hamano <gitster@pobox.com>2021-03-16 00:32:50 +0300
commit59c7b88198af8af29deffb2eee7b7b2329e9197e (patch)
treea7730b01f2e80b4cdadf679c7901667164fd39f1 /Makefile
parent066d5234d04737408f5f537f30f19873a2c7637f (diff)
simple-ipc: add win32 implementation
Create Windows implementation of "simple-ipc" using named pipes. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4128b457e1..40d5cab78d 100644
--- a/Makefile
+++ b/Makefile
@@ -1679,6 +1679,11 @@ else
LIB_OBJS += unix-socket.o
endif
+ifdef USE_WIN32_IPC
+ LIB_OBJS += compat/simple-ipc/ipc-shared.o
+ LIB_OBJS += compat/simple-ipc/ipc-win32.o
+endif
+
ifdef NO_ICONV
BASIC_CFLAGS += -DNO_ICONV
endif