diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-11-06 09:35:07 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-11-06 09:38:46 +0100 |
commit | 1ae41a0d1ebf14f03dcf009aff1a79f0d26ad591 (patch) | |
tree | a5795678e9e86d267daa33dbb1d3f5375fd99de8 /Makefile | |
parent | 55ac326ecb01161bf62865ae3350acf85db97d63 (diff) | |
download | cgit-1ae41a0d1ebf14f03dcf009aff1a79f0d26ad591.tar.gz cgit-1ae41a0d1ebf14f03dcf009aff1a79f0d26ad591.tar.bz2 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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,11 @@ OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ ui-snapshot.o ui-blob.o ui-tag.o ui-refs.o +ifdef NEEDS_LIBICONV + EXTLIBS += -liconv +endif + + .PHONY: all git install clean distclean force-version get-git all: cgit git |