[PATCH] Makefile: Disable gettext in the Git submodule
Lukas Fleischer
cgit at cryptocrack.de
Mon Mar 4 09:18:38 CET 2013
Newer libgit versions depend on the libintl library. However, we
currently do not link against libintl which breaks compilation under
OpenBSD:
git/libgit.a(commit.o)(.text+0x1d1b): In function `lookup_commit_or_die':
git/gettext.h:47: undefined reference to `libintl_gettext'
[...]
Since we do not support i18n in cgit, just disable gettext in the Git
submodule to fix this.
Signed-off-by: Lukas Fleischer <cgit at cryptocrack.de>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 76f6fe7..a9aa94a 100644
--- a/Makefile
+++ b/Makefile
@@ -99,7 +99,7 @@ ifeq ($(uname_S),$(filter $(uname_S),FreeBSD OpenBSD))
NEEDS_LIBICONV = yes
endif
-GIT_OPTIONS = prefix=/usr
+GIT_OPTIONS = prefix=/usr NO_GETTEXT=1
OBJECTS =
ifdef NO_ICONV
--
1.8.2.rc0.247.g811e0c0
More information about the CGit
mailing list