Change cache.h to include gettext.h. In previous incarnations of the
gettext series I included gettext.h in builtin.h, then changed
builtin/*.c files to include that when they didn't already.
It was pointed out by Junio and others that it makes more sense to
have the inclusion here, since gettext is going to be used everywhere.
Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
---
cache.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/cache.h b/cache.h
index 3abf895..a465f38 100644
--- a/cache.h
+++ b/cache.h
@@ -5,6 +5,7 @@
#include "strbuf.h"
#include "hash.h"
#include "advice.h"
+#include "gettext.h"
#include SHA1_HEADER
#ifndef git_SHA_CTX
--
1.7.2.3