]> git.wh0rd.org Git - nano.git/commitdiff
check for wget_wch() again instead of get_wch() when looking for the
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 16 Mar 2005 03:03:41 +0000 (03:03 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 16 Mar 2005 03:03:41 +0000 (03:03 +0000)
wide version of curses, since get_wch() might be a macro instead of a
function

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2376 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

configure.ac

index 8d66920d7bf3af4be522b9b83bc482f8e9176db9..ba1a2b316cf1e3aca9e62b7fffbac25a7f5bb4b4 100644 (file)
@@ -313,7 +313,7 @@ dnl Checks for libraries.
 if eval "test x$CURSES_LIB_NAME = x"
 then
     AC_CHECK_HEADERS(ncurses.h)
-    AC_CHECK_LIB(ncursesw, get_wch, [CURSES_LIB="-lncursesw" CURSES_LIB_NAME=ncursesw CURSES_LIB_WIDE="yes"])
+    AC_CHECK_LIB(ncursesw, wget_wch, [CURSES_LIB="-lncursesw" CURSES_LIB_NAME=ncursesw CURSES_LIB_WIDE="yes"])
     if eval "test x$CURSES_LIB_NAME = x"
     then
         AC_CHECK_LIB(ncurses, initscr, [CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses])
@@ -323,7 +323,7 @@ fi
 if eval "test x$CURSES_LIB_NAME = x"
 then
     AC_CHECK_HEADERS(curses.h)
-    AC_CHECK_LIB(curses, get_wch, [CURSES_LIB="-lcurses" CURSES_LIB_NAME=curses CURSES_LIB_WIDE="yes"])
+    AC_CHECK_LIB(curses, wget_wch, [CURSES_LIB="-lcurses" CURSES_LIB_NAME=curses CURSES_LIB_WIDE="yes"])
     if eval "test x$CURSES_LIB_NAME = x"
     then
         AC_CHECK_LIB(curses, initscr, [CURSES_LIB="-lcurses" CURSES_LIB_NAME=curses])