configure: ignore spice libraries on 32 bit. From: Rusty Russell Doesn't compile, doesn't work, isn't supported. See: http://spice-space.org/faq.html Signed-off-by: Rusty Russell --- configure | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index c9ff673..2b1d9a1 100755 --- a/configure +++ b/configure @@ -2509,7 +2509,7 @@ if compile_prog "" "" ; then need_offsetof=no fi -# spice probe +# spice probel x86-64 only (see http://spice-space.org/page/FAQ) if test "$spice" != "no" ; then cat > $TMPC << EOF #include @@ -2517,7 +2517,8 @@ int main(void) { spice_server_new(); return 0; } EOF spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) - if $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \ + if [ "$ARCH" = x86_64 ] && \ + $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \ compile_prog "$spice_cflags" "$spice_libs" ; then spice="yes" libs_softmmu="$libs_softmmu $spice_libs"