diff options
author | Karsten Blees <karsten.blees@gmail.com> | 2013-09-11 01:21:53 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-11 11:08:52 -0700 |
commit | bad866a29b0ec560c9bed31e2fe3610b6cf50ae3 (patch) | |
tree | 07636e1f11c5ad61fa12350b1cfa388fbe99ec6a | |
parent | Update draft release notes to 1.8.5 for the second batch of topics (diff) | |
download | tgif-bad866a29b0ec560c9bed31e2fe3610b6cf50ae3.tar.xz |
MSVC: fix compile errors due to missing libintl.h
Set NO_GETTEXT in config.mak.uname to get rid of libintl.h dependency.
Signed-off-by: Karsten Blees <blees@dcon.de>
Acked-by: Sebastian Schuberth <sschuberth@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | config.mak.uname | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname index 7d615314f4..781dee4db7 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -339,6 +339,7 @@ ifeq ($(uname_S),Windows) OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo NO_REGEX = YesPlease NO_CURL = YesPlease + NO_GETTEXT = YesPlease NO_PYTHON = YesPlease BLK_SHA1 = YesPlease ETAGS_TARGET = ETAGS |