diff options
author | Corentin Chary | 2010-07-07 20:58:06 +0200 |
---|---|---|
committer | Anthony Liguori | 2010-07-27 00:36:14 +0200 |
commit | 96763cf92b94a391bd4fce87eb12d15e64de6721 (patch) | |
tree | 81a503a9821f0568db956e83d3538678c35348a9 /configure | |
parent | vnc: tight: split send_sub_rect (diff) | |
download | qemu-96763cf92b94a391bd4fce87eb12d15e64de6721.tar.gz qemu-96763cf92b94a391bd4fce87eb12d15e64de6721.tar.xz qemu-96763cf92b94a391bd4fce87eb12d15e64de6721.zip |
vnc: better default values for VNC options
vnc_jpeg and vnc_png are now "auto" by default, this means that
if the dependencies are installed (libjpeg or libpng), then they
will be enabled.
vnc_thread is disabled by default. It should be enabled by default
as soon as it's stable enougth.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -270,7 +270,7 @@ vnc_tls="" vnc_sasl="" vnc_jpeg="" vnc_png="" -vnc_thread="" +vnc_thread="no" xen="" linux_aio="" attr="" @@ -842,7 +842,7 @@ echo " --disable-vnc-sasl disable SASL encryption for VNC server" echo " --enable-vnc-sasl enable SASL encryption for VNC server" echo " --disable-vnc-jpeg disable JPEG lossy compression for VNC server" echo " --enable-vnc-jpeg enable JPEG lossy compression for VNC server" -echo " --disable-vnc-png disable PNG compression for VNC server" +echo " --disable-vnc-png disable PNG compression for VNC server (default)" echo " --enable-vnc-png enable PNG compression for VNC server" echo " --disable-vnc-thread disable threaded VNC server" echo " --enable-vnc-thread enable threaded VNC server" @@ -1268,7 +1268,7 @@ fi ########################################## # VNC JPEG detection -if test "$vnc_jpeg" = "yes" ; then +if test "$vnc_jpeg" != "no" ; then cat > $TMPC <<EOF #include <stdio.h> #include <jpeglib.h> @@ -1289,7 +1289,7 @@ fi ########################################## # VNC PNG detection -if test "$vnc_png" = "yes" ; then +if test "$vnc_png" != "no" ; then cat > $TMPC <<EOF //#include <stdio.h> #include <png.h> @@ -2301,15 +2301,15 @@ if test "$vnc_sasl" = "yes" ; then echo "CONFIG_VNC_SASL=y" >> $config_host_mak echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak fi -if test "$vnc_jpeg" = "yes" ; then +if test "$vnc_jpeg" != "no" ; then echo "CONFIG_VNC_JPEG=y" >> $config_host_mak echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak fi -if test "$vnc_png" = "yes" ; then +if test "$vnc_png" != "no" ; then echo "CONFIG_VNC_PNG=y" >> $config_host_mak echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak fi -if test "$vnc_thread" = "yes" ; then +if test "$vnc_thread" != "no" ; then echo "CONFIG_VNC_THREAD=y" >> $config_host_mak echo "CONFIG_THREAD=y" >> $config_host_mak fi |