summaryrefslogtreecommitdiff
path: root/config.mak.uname
diff options
context:
space:
mode:
authorMark Levedahl <mlevedahl@gmail.com>2013-07-19 23:08:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-07-22 05:03:09 (GMT)
commitf593ef77792c36eeb1b92ed3661ed284502afdfb (patch)
tree43661b94afec8edb9878974312d5fd3de352e8d1 /config.mak.uname
parent103d530f775d513ff9ebc148a9b54a8677a01790 (diff)
downloadgit-f593ef77792c36eeb1b92ed3661ed284502afdfb.zip
git-f593ef77792c36eeb1b92ed3661ed284502afdfb.tar.gz
git-f593ef77792c36eeb1b92ed3661ed284502afdfb.tar.bz2
Cygwin 1.7 supports mmap
git has shipped for years with MMAP enabled in the stock distribution, there are no reports of problems / failures on the list relating to this. Leave the default as-is on v1.5 due to lack of knowlege of this working on earlier Cygwin. Signed-off-by: Mark Levedahl <mlevedahl@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.uname')
-rw-r--r--config.mak.uname8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.mak.uname b/config.mak.uname
index ce0390d..257b1ad 100644
--- a/config.mak.uname
+++ b/config.mak.uname
@@ -160,6 +160,10 @@ ifeq ($(uname_O),Cygwin)
NO_IPV6 = YesPlease
OLD_ICONV = UnfortunatelyYes
NO_THREAD_SAFE_PREAD = YesPlease
+ # There are conflicting reports about this.
+ # On some boxes NO_MMAP is needed, and not so elsewhere.
+ # Try commenting this out if you suspect MMAP is more efficient
+ NO_MMAP = YesPlease
else
NO_REGEX = UnfortunatelyYes
endif
@@ -167,10 +171,6 @@ ifeq ($(uname_O),Cygwin)
NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
- # There are conflicting reports about this.
- # On some boxes NO_MMAP is needed, and not so elsewhere.
- # Try commenting this out if you suspect MMAP is more efficient
- NO_MMAP = YesPlease
X = .exe
COMPAT_OBJS += compat/cygwin.o
UNRELIABLE_FSTAT = UnfortunatelyYes