summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-23 00:47:42 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-23 00:47:42 +0000
commitaf896aaab75295300dce8e0a210b4f26fd9865b2 (patch)
treefad98ad32a95eaa707a1eb54f5b8e3391ab2a061 /configure
parentce8536e23f5cc37484f8d56fd81b386f78add542 (diff)
downloadqemu-af896aaab75295300dce8e0a210b4f26fd9865b2.tar.gz
Fix and document curses configury bits.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4102 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 3df08abce9..470d435884 100755
--- a/configure
+++ b/configure
@@ -417,6 +417,7 @@ echo " --enable-esd enable EsoundD audio driver"
echo " --enable-fmod enable FMOD audio driver"
echo " --enable-dsound enable DirectSound audio driver"
echo " --disable-vnc-tls disable TLS encryption for VNC server"
+echo " --disable-curses disable curses output"
echo " --enable-system enable all system emulation targets"
echo " --disable-system disable all system emulation targets"
echo " --enable-linux-user enable all linux usermode emulation targets"
@@ -681,7 +682,7 @@ if test "$curses" = "yes" ; then
#include <curses.h>
int main(void) { return curses_version(); }
EOF
- if $cc -o $TMPE $TMPC -lcurses 2> /dev/null ; then
+ if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses 2> /dev/null ; then
curses=yes
fi
fi # test "$curses"