X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/bfb1ff9519ef60d33d6befe6c24b77233b776a33..22d9b77cc7819b2dfce44f968c3df3ee4c2ccdae:/configure.ac?ds=inline diff --git a/configure.ac b/configure.ac index 422039e..764190a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,23 +1,34 @@ AC_INIT([tig], [0], [Jonas Fonseca ], [tig]) + AC_LANG([C]) AC_CONFIG_HEADER(config.h) AC_CONFIG_SRCDIR(tig.c) -AC_SEARCH_LIBS([wclear], [ncurses curses]) +AC_SEARCH_LIBS([wclear], [ncursesw ncurses curses], [], + [AC_ERROR([curses not found])]) + AM_ICONV AC_PROG_CC -AC_CHECK_PROGS(GIT_CONFIG, [git-config git-repo-config]) -if test "${ac_cv_prog_GIT_CONFIG}" = ""; then - AC_CHECK_PROGS(GIT, [git]) - GIT_CONFIG="${ac_cv_prog_GIT} config" -fi + +AC_CHECK_PROG(GIT, [git], [git], [AC_ERROR([git not found])]) +AC_MSG_CHECKING([which config command git supports]) +GIT_CONFIG="git repo-config" +git config --list >/dev/null && GIT_CONFIG="git config" +AC_MSG_RESULT([$GIT_CONFIG]) AC_DEFINE_UNQUOTED(GIT_CONFIG,"$GIT_CONFIG",[git config program]) + AC_CHECK_PROGS(ASCIIDOC, [asciidoc false]) AC_CHECK_PROGS(XMLTO, [xmlto false]) AC_CHECK_PROGS(DOCBOOK2PDF, [docbook2pdf false]) AC_CONFIG_FILES([config.make]) AC_OUTPUT + +case "$LIBS" in +*-lncursesw*) ;; +*) AC_MSG_RESULT([NOTE: The found ncurses library does not support wide-char.]) + AC_MSG_RESULT([NOTE: This means that tig will not correctly render UTF-8]) +esac