Change the Windows and MinGW build defaults to not build the gettext
tools by default. Gettext hasn't yet been ported to the default
environments on those systems, although Erik Faye-Lund is working on
MinGW support.
Reported-by: Johannes Sixt <redacted>
Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
---
Makefile | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index 426e0b1..67d94d3 100644
--- a/Makefile
+++ b/Makefile
@@ -826,6 +826,8 @@ ifeq ($(uname_S),Windows)
NO_REGEX = YesPlease
NO_CURL = YesPlease
NO_PYTHON = YesPlease
+ NO_GETTEXT = YesPlease
+ NEEDS_LIBINTL =
BLK_SHA1 = YesPlease
NATIVE_CRLF = YesPlease
@@ -878,6 +880,8 @@ ifneq (,$(findstring MINGW,$(uname_S)))
OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
NO_REGEX = YesPlease
NO_PYTHON = YesPlease
+ NO_GETTEXT = YesPlease
+ NEEDS_LIBINTL =
BLK_SHA1 = YesPlease
ETAGS_TARGET = ETAGS
COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -DNOGDI -Icompat -Icompat/fnmatch -Icompat/win32
--
1.7.2.3