From patchwork Sat Nov 3 15:44:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: libseccomp: require version 1.0.0 From: Blue Swirl X-Patchwork-Id: 196850 Message-Id: To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, blauwirbel@gmail.com Date: Sat, 3 Nov 2012 15:44:19 +0000 Debian Wheezy has version 0.1.0 which is not compatible, avoid it. Signed-off-by: Blue Swirl --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 8e70cbb..b6948f7 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