diff options
author | Lars Hjemli | 2007-11-06 09:35:07 +0100 |
---|---|---|
committer | Lars Hjemli | 2007-11-06 09:38:46 +0100 |
commit | 1ae41a0d1ebf14f03dcf009aff1a79f0d26ad591 (patch) | |
tree | a5795678e9e86d267daa33dbb1d3f5375fd99de8 | |
parent | Merge branch 'iconv-rebased' of http://x2a.org/pub/git/cgit (diff) | |
download | cgit-1ae41a0d1ebf14f03dcf009aff1a79f0d26ad591.tar.gz cgit-1ae41a0d1ebf14f03dcf009aff1a79f0d26ad591.zip |
Makefile: link with libiconv if NEEDS_LIBICONV is defined
This seems to be needed to compile on cygwin. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 6abd82a..dbc34a2 100644 --- a/Makefile +++ b/Makefile | |||
@@ -19,6 +19,11 @@ OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ | |||
19 | ui-snapshot.o ui-blob.o ui-tag.o ui-refs.o | 19 | ui-snapshot.o ui-blob.o ui-tag.o ui-refs.o |
20 | 20 | ||
21 | 21 | ||
22 | ifdef NEEDS_LIBICONV | ||
23 | EXTLIBS += -liconv | ||
24 | endif | ||
25 | |||
26 | |||
22 | .PHONY: all git install clean distclean force-version get-git | 27 | .PHONY: all git install clean distclean force-version get-git |
23 | 28 | ||
24 | all: cgit git | 29 | all: cgit git |