From: Junio C Hamano Date: Wed, 2 Aug 2006 22:44:07 +0000 (-0700) Subject: Cygwin needs NO_C99_FORMAT??? X-Git-Tag: v1.4.2-rc4~18^2 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=70b9c59656f974590fc050dfb3429106fd37c9ee;p=git.git Cygwin needs NO_C99_FORMAT??? I noticed that t3800 test breaks with git built without this option. Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 700c77f56..f67b28f75 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.