Re: [PATCH] mingw: enable NO_PYTHON
From: Erik Faye-Lund <hidden>
Date: 2016-06-15 22:47:59
Uhm, I just realized that I sent out a patch that wasn't clean against Junio's master after all. I'll send out a fixed one ASAP. Sorry about the noise. On Thu, Jan 7, 2010 at 10:52 PM, Erik Faye-Lund [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Python is not commonly installed on Windows machines, so we should disable it there by default. Signed-off-by: Erik Faye-Lund <redacted> --- This patch is against Junio's current master, and enables msysgit to compile upstream git again after Sverre's addition of the python remote-helpers (2fe40b6). Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)diff --git a/Makefile b/Makefile index 1c7668a..a2780a2 100644 --- a/Makefile +++ b/Makefile@@ -1028,6 +1028,7 @@ ifneq (,$(findstring MINGW,$(uname_S)))BLK_SHA1 = YesPlease NO_INET_PTON = YesPlease NO_INET_NTOP = YesPlease + NO_PYTHON = YesPlease COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -DNOGDI -Icompat -Icompat/fnmatch COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\" COMPAT_OBJS += compat/mingw.o compat/fnmatch/fnmatch.o compat/winansi.o -- 1.6.6.95.g82b1b.dirty
-- Erik "kusma" Faye-Lund