slang-users mailing list

[2011 Date Index] [2011 Thread Index] [Other years]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]

[slang-users] [PATCH] Fix detection of wide version of ncurses config program


Name is ncursesw5-config, not ncurses5w-config, even cross-LFS made that same error (but not LFS)
Seen with ncurses-5.8 and 5.9, probably true since the beginning as google hits count for the first is 60 times more than the second.

Signed-off-by: Gilles Espinasse <g.esp@xxxxxxx>
---
 autoconf/aclocal.m4 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/autoconf/aclocal.m4 b/autoconf/aclocal.m4
index d5eb3f2..fdca9cb 100644
--- a/autoconf/aclocal.m4
+++ b/autoconf/aclocal.m4
@@ -469,7 +469,7 @@ AC_DEFUN([JD_TERMCAP], dnl#{{{
 AC_PATH_PROG(nc5config, ncurses5-config, no)
 if test "$nc5config" = "no"
 then
-  AC_PATH_PROG(nc5config, ncurses5w-config, no)
+  AC_PATH_PROG(nc5config, ncursesw5-config, no)
 fi
 AC_MSG_CHECKING(for terminfo)
 if test "$nc5config" != "no"
-- 
1.5.6.5




[2011 date index] [2011 thread index]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]