From d10d2510b903a8ed8be584199828e95d1c267e14 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20F=C3=A4rber?= Date: Sun, 28 Apr 2013 16:27:26 +0200 Subject: [PATCH] configure: Pick up libseccomp include path MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit openSUSE 12.3 has seccomp.h in /usr/include/libseccomp-1.0.1, so add `pkg-config --cflags libseccomp` output to QEMU_CFLAGS. Cc: qemu-stable@nongnu.org Signed-off-by: Andreas Färber Signed-off-by: Michael Tokarev (cherry picked from commit 372e47e9b5e31c493823d7f512716644fb02d0fd) Signed-off-by: Michael Roth --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index e7468a98b75..d7a39cc9fd9 100755 --- a/configure +++ b/configure @@ -1435,6 +1435,7 @@ fi if test "$seccomp" != "no" ; then if $pkg_config --atleast-version=1.0.0 libseccomp --modversion >/dev/null 2>&1; then libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`" + QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`" seccomp="yes" else if test "$seccomp" = "yes"; then -- 2.39.5