diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-10-11 20:21:17 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-10-11 20:21:17 +0200 |
commit | 8011587ef34d98398b60be8fcd6c6ecf499c0676 (patch) | |
tree | e5b980763fe2c86b52932e959aa8eeeefb6bd44c /Makefile | |
parent | ed7ff095ca467cdc4c8a1a1459847d68e50c9b91 (diff) | |
parent | efaccb3d6ab7abc459681e27b6c9b2d8119333eb (diff) | |
download | cgit-8011587ef34d98398b60be8fcd6c6ecf499c0676.tar.gz cgit-8011587ef34d98398b60be8fcd6c6ecf499c0676.tar.bz2 cgit-8011587ef34d98398b60be8fcd6c6ecf499c0676.zip |
Merge branch 'stable'
* stable:
Makefile: enable compilation on uclibc
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -93,6 +93,9 @@ CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' +ifdef NO_ICONV + CFLAGS += -DNO_ICONV +endif cgit: $(OBJECTS) libgit $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |