+2013-01-19 Chris Allegretta <chrisa@asty.org>
+ * configure.ac: Make ncursesw checking dependent on the presence of ncursesw.h,
+ since without the header files we can't compile.
+
2013-01-13 Chris Allegretta <chrisa@asty.org>
* src/utils.c (parse_num): Initalize errno before calling strtol(). Fixes issue
where trying to go to a line number too long will break legitimate goto-lines
AC_CHECK_HEADERS(ncurses.h)
if test x$enable_utf8 != xno; then
- AC_CHECK_HEADERS(ncursesw/ncurses.h)
- AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw5-config, no)
- if test "x$NCURSESW_CONFIG" != xno; then
- CURSES_LIB=`$NCURSESW_CONFIG --libs`
- CPPFLAGS="`$NCURSESW_CONFIG --cflags` $CPPFLAGS"
- CURSES_LIB_NAME=ncursesw
- CURSES_LIB_WIDE=yes
- else
- AC_CHECK_LIB(ncursesw, get_wch, [CURSES_LIB="-lncursesw" CURSES_LIB_NAME=ncursesw CURSES_LIB_WIDE=yes])
- fi
+ AC_CHECK_HEADERS(ncursesw/ncurses.h, [
+ AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw5-config, no)
+ if test "x$NCURSESW_CONFIG" != xno; then
+ CURSES_LIB=`$NCURSESW_CONFIG --libs`
+ CPPFLAGS="`$NCURSESW_CONFIG --cflags` $CPPFLAGS"
+ CURSES_LIB_NAME=ncursesw
+ CURSES_LIB_WIDE=yes
+ else
+ AC_CHECK_LIB(ncursesw, get_wch, [CURSES_LIB="-lncursesw" CURSES_LIB_NAME=ncursesw CURSES_LIB_WIDE=yes])
+ fi
+ ])
fi
if eval "test x$CURSES_LIB_NAME = x"; then