diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-11-03 15:42:21 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-11-17 16:38:31 +0000 |
commit | 2c5c4451e69a69c0fad3303c25cc7eaad6950f79 (patch) | |
tree | ec3c9a8be13e1c2964af269b5f3875e8d862a644 /configure | |
parent | ab4dd33dc3127a3830591b597a1f42be3686e1fd (diff) |
libseccomp: require version 1.0.0
Debian Wheezy has version 0.1.0 which is not compatible, avoid it.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |