watch: Support wide char ncurses on mac with enable-watch8bit
Fixes #47
This commit is contained in:
parent
b0c8e3408b
commit
e0f47aab1c
@ -163,8 +163,11 @@ else
|
|||||||
if test "$enable_watch8bit" = yes; then
|
if test "$enable_watch8bit" = yes; then
|
||||||
PKG_CHECK_MODULES([NCURSESW], [ncursesw], [WATCH_NCURSES_LIBS="$NCURSESW_LIBS"]
|
PKG_CHECK_MODULES([NCURSESW], [ncursesw], [WATCH_NCURSES_LIBS="$NCURSESW_LIBS"]
|
||||||
[WATCH_NCURSES_CFLAGS="$NCURSESW_CFLAGS"], [
|
[WATCH_NCURSES_CFLAGS="$NCURSESW_CFLAGS"], [
|
||||||
AC_CHECK_LIB([ncursesw], [addwstr], [WATCH_NCURSES_LIBS=-lncursesw],
|
AC_CHECK_LIB([ncursesw], [addwstr], [WATCH_NCURSES_LIBS=-lncursesw], [
|
||||||
[AC_MSG_ERROR([Cannot find ncurses wide library ncursesw with --enable-watch8bit])])
|
AC_CHECK_LIB([ncurses], [addwstr], [WATCH_NCURSES_LIBS=-lncurses], [
|
||||||
|
AC_MSG_ERROR([Cannot find ncurses wide library ncursesw with --enable-watch8bit])
|
||||||
|
])
|
||||||
|
])
|
||||||
])
|
])
|
||||||
else
|
else
|
||||||
WATCH_NCURSES_LIBS="$NCURSES_LIBS"
|
WATCH_NCURSES_LIBS="$NCURSES_LIBS"
|
||||||
|
Loading…
Reference in New Issue
Block a user