From 2c5c4451e69a69c0fad3303c25cc7eaad6950f79 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sat, 3 Nov 2012 15:42:21 +0000 Subject: [PATCH] libseccomp: require version 1.0.0 Debian Wheezy has version 0.1.0 which is not compatible, avoid it. Signed-off-by: Blue Swirl --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0