summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-06-30 22:33:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-06-30 22:33:40 (GMT)
commitc6c4250eb605a502e1b5128d224561cf71272798 (patch)
treee12bdffbd7c6e7aea2ed75fcb610a836c0aef07a /Makefile
parent91863750cd09c3da93368d8fc6d3caeaabf1d66a (diff)
parent6c642a878688adf46b226903858b53e2d31ac5c3 (diff)
downloadgit-c6c4250eb605a502e1b5128d224561cf71272798.zip
git-c6c4250eb605a502e1b5128d224561cf71272798.tar.gz
git-c6c4250eb605a502e1b5128d224561cf71272798.tar.bz2
Merge branch 'fc/macos-x-clipped-write' into maint
Mac OS X does not like to write(2) more than INT_MAX number of bytes; work it around by chopping write(2) into smaller pieces. * fc/macos-x-clipped-write: compate/clipped-write.c: large write(2) fails on Mac OS X/XNU
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5e7cadf..11d89a5 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.
#
@@ -1481,6 +1484,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