Don't build wine-preloader for other cpus than x86.

diff --git a/configure b/configure
index b9ef8db..0cb457e 100755
--- a/configure
+++ b/configure
@@ -14258,8 +14258,12 @@
 
 case $host_os in
   linux*)
-    WINE_BINARIES="wine-glibc wine-kthread wine-pthread wine-preloader"
-
+    case $host_cpu in
+      *i[3456789]86*) WINE_BINARIES="wine-glibc wine-kthread wine-pthread wine-preloader"
+ ;;
+      *) WINE_BINARIES="wine-glibc wine-kthread wine-pthread"
+ ;;
+    esac
     MAIN_BINARY="wine-glibc"
 
     ;;