summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFilipe Cabecinhas <filcab@gmail.com>2013-05-10 22:24:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-17 19:16:30 (GMT)
commit6c642a878688adf46b226903858b53e2d31ac5c3 (patch)
tree8fc188945aa2789a37089c4322c99bacbe4ccaca /Makefile
parent239222f587ed06f96d90dd71c66d80a2b1e3dc9f (diff)
downloadgit-6c642a878688adf46b226903858b53e2d31ac5c3.zip
git-6c642a878688adf46b226903858b53e2d31ac5c3.tar.gz
git-6c642a878688adf46b226903858b53e2d31ac5c3.tar.bz2
compate/clipped-write.c: large write(2) fails on Mac OS X/XNU
Due to a bug in the Darwin kernel, write(2) calls have a maximum size of INT_MAX bytes. Introduce a new compat function, clipped_write(), that only writes at most INT_MAX bytes and returns the number of bytes written, as a substitute for write(2), and allow platforms that need this to enable it from the build mechanism with NEEDS_CLIPPED_WRITE. Set it for Mac OS X by default. It may be necessary to include this function on Windows, too. Signed-off-by: Filipe Cabecinhas <filcab+git@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 26d3332..0434715 100644
--- a/Makefile
+++ b/Makefile
@@ -69,6 +69,9 @@ all::
# Define NO_MSGFMT_EXTENDED_OPTIONS if your implementation of msgfmt
# doesn't support GNU extensions like --check and --statistics
#
+# Define NEEDS_CLIPPED_WRITE if your write(2) cannot write more than
+# INT_MAX bytes at once (e.g. MacOS X).
+#
# Define HAVE_PATHS_H if you have paths.h and want to use the default PATH
# it specifies.
#
@@ -1463,6 +1466,11 @@ ifndef NO_MSGFMT_EXTENDED_OPTIONS
MSGFMT += --check --statistics
endif
+ifdef NEEDS_CLIPPED_WRITE
+ BASIC_CFLAGS += -DNEEDS_CLIPPED_WRITE
+ COMPAT_OBJS += compat/clipped-write.o
+endif
+
ifneq (,$(XDL_FAST_HASH))
BASIC_CFLAGS += -DXDL_FAST_HASH
endif