diff options
author | Lukas Fleischer | 2013-03-04 09:18:38 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2013-03-04 09:27:43 -0500 |
commit | 78a24e5c55ac57efab90cf1e65b9af226b388a39 (patch) | |
tree | 60313e5eda3dc83f98ea15128c86cc3a5b50c60a /Makefile | |
parent | Makefile: improve dependency generation (diff) | |
download | cgit-78a24e5c55ac57efab90cf1e65b9af226b388a39.tar.gz cgit-78a24e5c55ac57efab90cf1e65b9af226b388a39.zip |
Makefile: Disable gettext in the Git submodule
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@cryptocrack.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 42e8bfd..1127961 100644 --- a/Makefile +++ b/Makefile | |||
@@ -99,7 +99,7 @@ ifeq ($(uname_S),$(filter $(uname_S),FreeBSD OpenBSD)) | |||
99 | NEEDS_LIBICONV = yes | 99 | NEEDS_LIBICONV = yes |
100 | endif | 100 | endif |
101 | 101 | ||
102 | GIT_OPTIONS = prefix=/usr | 102 | GIT_OPTIONS = prefix=/usr NO_GETTEXT=1 |
103 | OBJECTS = | 103 | OBJECTS = |
104 | 104 | ||
105 | ifdef NO_ICONV | 105 | ifdef NO_ICONV |