Commit af896aaab75295300dce8e0a210b4f26fd9865b2
1 parent
ce8536e2
Fix and document curses configury bits.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4102 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
1 deletions
configure
... | ... | @@ -417,6 +417,7 @@ echo " --enable-esd enable EsoundD audio driver" |
417 | 417 | echo " --enable-fmod enable FMOD audio driver" |
418 | 418 | echo " --enable-dsound enable DirectSound audio driver" |
419 | 419 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
420 | +echo " --disable-curses disable curses output" | |
420 | 421 | echo " --enable-system enable all system emulation targets" |
421 | 422 | echo " --disable-system disable all system emulation targets" |
422 | 423 | echo " --enable-linux-user enable all linux usermode emulation targets" |
... | ... | @@ -681,7 +682,7 @@ if test "$curses" = "yes" ; then |
681 | 682 | #include <curses.h> |
682 | 683 | int main(void) { return curses_version(); } |
683 | 684 | EOF |
684 | - if $cc -o $TMPE $TMPC -lcurses 2> /dev/null ; then | |
685 | + if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses 2> /dev/null ; then | |
685 | 686 | curses=yes |
686 | 687 | fi |
687 | 688 | fi # test "$curses" | ... | ... |