From: "Benoît Canet" <benoit.canet@irqsave.net>
To: Stefan Weil <sw@weilnetz.de>
Cc: Qiao Nuohan <qiaonuohan@cn.fujitsu.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] configure: Enable dead code (lzo, snappy, quorum)
Date: Thu, 5 Jun 2014 14:22:43 +0200 [thread overview]
Message-ID: <20140605122243.GE10006@irqsave.net> (raw)
In-Reply-To: <1398752476-23448-1-git-send-email-sw@weilnetz.de>
The Tuesday 29 Apr 2014 à 08:21:16 (+0200), Stefan Weil wrote :
> Those options were not enabled by default, even when the build
> environment would have supported them, so the corresponding
> code was not compiled in normal test builds like on build bots.
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
>
> I'm not sure whether this patch is trivial enough for qemu-trivial.
> Are there any disadvantages when this code is enabled?
>
> Stefan
>
> configure | 39 ++++++++++++++++++++++++---------------
> 1 file changed, 24 insertions(+), 15 deletions(-)
>
> diff --git a/configure b/configure
> index 2fbec59..0faadd7 100755
> --- a/configure
> +++ b/configure
> @@ -301,8 +301,8 @@ libusb=""
> usb_redir=""
> glx=""
> zlib="yes"
> -lzo="no"
> -snappy="no"
> +lzo=""
> +snappy=""
> guest_agent=""
> guest_agent_with_vss="no"
> vss_win32_sdk=""
> @@ -323,7 +323,7 @@ vte=""
> tpm="no"
> libssh2=""
> vhdx=""
> -quorum="no"
> +quorum=""
>
> # parse CC options first
> for opt do
> @@ -1023,8 +1023,12 @@ for opt do
> ;;
> --disable-zlib-test) zlib="no"
> ;;
> + --disable-lzo) lzo="no"
> + ;;
> --enable-lzo) lzo="yes"
> ;;
> + --disable-snappy) snappy="no"
> + ;;
> --enable-snappy) snappy="yes"
> ;;
> --enable-guest-agent) guest_agent="yes"
> @@ -1722,13 +1726,14 @@ if test "$lzo" != "no" ; then
> int main(void) { lzo_version(); return 0; }
> EOF
> if compile_prog "" "-llzo2" ; then
> - :
> + libs_softmmu="$libs_softmmu -llzo2"
> + lzo="yes"
> else
> - error_exit "lzo check failed" \
> - "Make sure to have the lzo libs and headers installed."
> + if test "$lzo" = "yes"; then
> + feature_not_found "liblzo2" "Install liblzo2 devel"
> + fi
> + lzo="no"
> fi
> -
> - libs_softmmu="$libs_softmmu -llzo2"
> fi
>
> ##########################################
> @@ -1740,13 +1745,14 @@ if test "$snappy" != "no" ; then
> int main(void) { snappy_max_compressed_length(4096); return 0; }
> EOF
> if compile_prog "" "-lsnappy" ; then
> - :
> + libs_softmmu="$libs_softmmu -lsnappy"
> + snappy="yes"
> else
> - error_exit "snappy check failed" \
> - "Make sure to have the snappy libs and headers installed."
> + if test "$snappy" = "yes"; then
> + feature_not_found "libsnappy" "Install libsnappy devel"
> + fi
> + snappy="no"
> fi
> -
> - libs_softmmu="$libs_softmmu -lsnappy"
> fi
>
> ##########################################
> @@ -2172,9 +2178,12 @@ if compile_prog "$quorum_tls_cflags" "$quorum_tls_libs" ; then
> libs_softmmu="$quorum_tls_libs $libs_softmmu"
> libs_tools="$quorum_tls_libs $libs_softmmu"
> QEMU_CFLAGS="$QEMU_CFLAGS $quorum_tls_cflags"
> + quorum="yes"
> else
> - echo "gnutls > 2.10.0 required to compile Quorum"
> - exit 1
> + if test "$quorum" = "yes"; then
> + feature_not_found "gnutls" "gnutls > 2.10.0 required to compile Quorum"
> + fi
> + quorum="no"
> fi
> fi
>
> --
> 1.7.10.4
>
Ping and Reviewed-by: Benoit Canet <benoit@irqsave.net>
This should go in for 2.1 as Kevin asked to enable quorum by default.
next prev parent reply other threads:[~2014-06-05 12:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1398752476-23448-1-git-send-email-sw@weilnetz.de>
2014-05-02 11:12 ` [Qemu-devel] [PATCH] configure: Enable dead code (lzo, snappy, quorum) Stefan Hajnoczi
2014-06-05 12:22 ` Benoît Canet [this message]
2014-06-10 14:19 ` Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140605122243.GE10006@irqsave.net \
--to=benoit.canet@irqsave.net \
--cc=qemu-devel@nongnu.org \
--cc=qiaonuohan@cn.fujitsu.com \
--cc=sw@weilnetz.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).