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:
authorJunio C Hamano <junkio@cox.net>2006-08-03 02:44:07 +0400
committerJunio C Hamano <junkio@cox.net>2006-08-03 04:06:50 +0400
commit70b9c59656f974590fc050dfb3429106fd37c9ee (patch)
tree8e44cf53c74eb0a437ffdbdeeb9421d90ec715c9
parentfba0cbd95d796857622d642160176907930ae511 (diff)
Cygwin needs NO_C99_FORMAT???
I noticed that t3800 test breaks with git built without this option. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 700c77f564..f67b28f75a 100644
--- a/Makefile
+++ b/Makefile
@@ -317,6 +317,7 @@ ifeq ($(uname_O),Cygwin)
NO_STRLCPY = YesPlease
NO_SYMLINK_HEAD = YesPlease
NEEDS_LIBICONV = YesPlease
+ NO_C99_FORMAT = YesPlease
# There are conflicting reports about this.
# On some boxes NO_MMAP is needed, and not so elsewhere.
# Try uncommenting this if you see things break -- YMMV.