diff options
| author | Stefan Weil | 2016-03-16 21:27:25 +0100 |
|---|---|---|
| committer | Stefan Weil | 2016-03-22 19:17:38 +0100 |
| commit | ae6296342a1e0785cafd6ce2530f022d187e20e7 (patch) | |
| tree | b60af1323f18e06bcd185cef87750bfbcb366741 /configure | |
| parent | Remove unneeded include statements for setjmp.h (diff) | |
| download | qemu-ae6296342a1e0785cafd6ce2530f022d187e20e7.tar.gz qemu-ae6296342a1e0785cafd6ce2530f022d187e20e7.tar.xz qemu-ae6296342a1e0785cafd6ce2530f022d187e20e7.zip | |
wxx: Add support for ncurses
We used to support only pdcurses for Windows, but recently Cygwin added
mingw64-i686-ncurses and mingw64-x86_64-ncurses packages which are
supported now, too.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2836,7 +2836,7 @@ fi # curses probe if test "$curses" != "no" ; then if test "$mingw32" = "yes" ; then - curses_list="-lpdcurses" + curses_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses" else curses_list="$($pkg_config --libs ncurses 2>/dev/null):-lncurses:-lcurses" fi |
