Use --no-color option when calling git-log and git-diff
[tig] / configure.ac
... / ...
CommitLineData
1AC_INIT([tig], [0],
2 [Jonas Fonseca <fonseca@diku.dk>],
3 [tig])
4AC_LANG([C])
5AC_CONFIG_HEADER(config.h)
6AC_CONFIG_SRCDIR(tig.c)
7
8AC_SEARCH_LIBS([wclear], [ncurses curses])
9AM_ICONV
10
11AC_PROG_CC
12AC_CHECK_PROGS(GIT_CONFIG, [git-config git-repo-config])
13AC_DEFINE_UNQUOTED(GIT_CONFIG,"$GIT_CONFIG",[git config program])
14AC_CHECK_PROGS(ASCIIDOC, [asciidoc false])
15AC_CHECK_PROGS(XMLTO, [xmlto false])
16AC_CHECK_PROGS(DOCBOOK2PDF, [docbook2pdf false])
17
18AC_CONFIG_FILES([config.make])
19AC_OUTPUT