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

This commit is contained in:
Vincent Béron 2004-10-14 00:30:59 +00:00 committed by Alexandre Julliard
parent 804277371a
commit 4bf9d98c68
2 changed files with 10 additions and 3 deletions

8
configure vendored
View File

@ -14258,8 +14258,12 @@ esac
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"
;;

View File

@ -1015,7 +1015,10 @@ esac
case $host_os in
linux*)
AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread wine-preloader")
case $host_cpu in
*i[[3456789]]86*) AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread wine-preloader") ;;
*) AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread") ;;
esac
AC_SUBST(MAIN_BINARY,"wine-glibc")
;;
darwin*)