diff options
Diffstat (limited to '')
| -rwxr-xr-x | configure | 3 | ||||
| -rw-r--r-- | hw/intc/arm_gicv3_dist.c | 1 | ||||
| -rw-r--r-- | hw/intc/arm_gicv3_redist.c | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure index 10cb212359..5929aba98c 100755 --- a/configure +++ b/configure @@ -1884,6 +1884,9 @@ if test "$seccomp" != "no" ; then arm|aarch64) libseccomp_minver="2.2.3" ;; + ppc|ppc64) + libseccomp_minver="2.3.0" + ;; *) libseccomp_minver="" ;; diff --git a/hw/intc/arm_gicv3_dist.c b/hw/intc/arm_gicv3_dist.c index b977ae5984..3ea3dd0d40 100644 --- a/hw/intc/arm_gicv3_dist.c +++ b/hw/intc/arm_gicv3_dist.c @@ -10,6 +10,7 @@ */ #include "qemu/osdep.h" +#include "qemu/log.h" #include "trace.h" #include "gicv3_internal.h" diff --git a/hw/intc/arm_gicv3_redist.c b/hw/intc/arm_gicv3_redist.c index 55c25e8935..2f60096e6e 100644 --- a/hw/intc/arm_gicv3_redist.c +++ b/hw/intc/arm_gicv3_redist.c @@ -10,6 +10,7 @@ */ #include "qemu/osdep.h" +#include "qemu/log.h" #include "trace.h" #include "gicv3_internal.h" |