[Spice-commits] m4/spice-deps.m4

Frediano Ziglio fziglio at kemper.freedesktop.org
Mon Nov 28 18:37:40 UTC 2016


 m4/spice-deps.m4 |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 6b409c4a7979f043a997ae762f16c6edec68345e
Author: Frediano Ziglio <fziglio at redhat.com>
Date:   Mon Nov 28 17:47:51 2016 +0000

    Detect LZ4_compress_fast_continue function
    
    Newer lz4 headers give deprecated warning using LZ4_compress_continue
    instead of LZ_compress_fast_continue so detect this function
    to allow usage and avoid the warning.
    
    Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
    Acked-by: Pavel Grunt <pgrunt at redhat.com>

diff --git a/m4/spice-deps.m4 b/m4/spice-deps.m4
index 3b22422..5e9ad17 100644
--- a/m4/spice-deps.m4
+++ b/m4/spice-deps.m4
@@ -198,6 +198,7 @@ AC_DEFUN([SPICE_CHECK_LZ4], [
         AC_CHECK_FUNC([LZ4_compress_default], [
             AC_DEFINE(USE_LZ4, [1], [Define to build with lz4 support])],
             [have_lz4="no"])
+        AC_CHECK_FUNCS([LZ4_compress_fast_continue])
 
         LIBS="$old_LIBS"
         CFLAGS="$old_CFLAGS"


More information about the Spice-commits mailing list