Code

Fallback to ncurses if ncursesw is missing
authorKalle Wallin <kaw@linux.se>
Tue, 28 Mar 2006 08:55:24 +0000 (08:55 +0000)
committerKalle Wallin <kaw@linux.se>
Tue, 28 Mar 2006 08:55:24 +0000 (08:55 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3961 09075e82-0dd4-0310-85a5-a0d7c8717e4f

configure.ac

index 9cda7754691fceaf55ff51fd3fff25e277f2257e..0e6957f822ca5d486a5d14a88b46bf872f90474f 100644 (file)
@@ -67,7 +67,7 @@ AC_CHECK_FUNC([gethostbyname],
 
 
 dnl ncurses
-ncurses=ncursesw
+ncurses=auto
 AC_ARG_WITH([ncurses],
            AC_HELP_STRING([--with-ncurses], [compile/link with ncurses library] ),
            [ncurses=ncurses])
@@ -75,10 +75,19 @@ AC_ARG_WITH(ncursesw,
            AC_HELP_STRING([--with-ncursesw], [compile/link with wide-char ncurses library @<:@default@:>@]),
            [ncurses=ncursesw])
 
+if test "x$ncurses" = "xauto"; then
+       AC_CHECK_LIB([ncursesw], 
+                    [initscr],
+                    [ncurses=ncursesw],
+                    [ncurses=ncurses])
+fi
+                    
+
 AC_CHECK_LIB([$ncurses], 
             [initscr],
-             [LIBS="$LIBS -l$ncurses"], 
-             [AC_MSG_ERROR($ncurses library is required)])
+            [LIBS="$LIBS -l$ncurses"], 
+            [AC_MSG_ERROR($ncurses library is required)])
+
 
 if test "x$ncurses" = "xncursesw" ; then
    AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, [wide-char wget_ch()])