From: Blue Swirl Date: Sat, 3 Nov 2012 15:42:21 +0000 (+0000) Subject: libseccomp: require version 1.0.0 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2c5c4451e69a69c0fad3303c25cc7eaad6950f79;p=qmiga%2Fqemu.git libseccomp: require version 1.0.0 Debian Wheezy has version 0.1.0 which is not compatible, avoid it. Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index f847ee264e..e6c5712723 100755 --- a/configure +++ b/configure @@ -1383,7 +1383,7 @@ fi # libseccomp check if test "$seccomp" != "no" ; then - if $pkg_config libseccomp --modversion >/dev/null 2>&1; then + if $pkg_config --atleast-version=1.0.0 libseccomp --modversion >/dev/null 2>&1; then LIBS=`$pkg_config --libs libseccomp` seccomp="yes" else