mirror of https://github.com/xemu-project/xemu.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 <blauwirbel@gmail.com>
This commit is contained in:
parent
ab4dd33dc3
commit
2c5c4451e6
|
@ -1383,7 +1383,7 @@ fi
|
||||||
# libseccomp check
|
# libseccomp check
|
||||||
|
|
||||||
if test "$seccomp" != "no" ; then
|
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`
|
LIBS=`$pkg_config --libs libseccomp`
|
||||||
seccomp="yes"
|
seccomp="yes"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue