Alexandre Julliard : configure: Default to using wine-pthread on all platforms.
Module: wine Branch: refs/heads/master Commit: 40bbcfb0a10714e7b2f6147a2c74ff81bd2d507d URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=40bbcfb0a10714e7b2f6147a... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Jun 20 13:44:19 2006 +0200 configure: Default to using wine-pthread on all platforms. --- configure | 11 ++--------- configure.ac | 6 +----- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/configure b/configure index b35568c..cb824be 100755 --- a/configure +++ b/configure @@ -17266,7 +17266,8 @@ case $host_os in ;; esac -case $host_cpu in +MAIN_BINARY="wine-pthread" + case $host_cpu in *i[3456789]86*) case $host_os in linux* | k*bsd*-gnu) @@ -17274,16 +17275,8 @@ case $host_cpu in EXTRA_BINARIES="wine-kthread wine-pthread wine-preloader" ;; - darwin*|freebsd*) - MAIN_BINARY="wine-pthread" - ;; - *) - MAIN_BINARY="wine-kthread" - ;; esac ;; - *) MAIN_BINARY="wine-pthread" - ;; esac diff --git a/configure.ac b/configure.ac index 009cd13..e88a506 100644 --- a/configure.ac +++ b/configure.ac @@ -1215,19 +1215,15 @@ case $host_os in ;; esac +AC_SUBST(MAIN_BINARY,"wine-pthread") dnl Default value case $host_cpu in *i[[3456789]]86*) case $host_os in linux* | k*bsd*-gnu) AC_SUBST(MAIN_BINARY,"wine-glibc") AC_SUBST(EXTRA_BINARIES,"wine-kthread wine-pthread wine-preloader") ;; - darwin*|freebsd*) - AC_SUBST(MAIN_BINARY,"wine-pthread") ;; - *) - AC_SUBST(MAIN_BINARY,"wine-kthread") ;; esac ;; - *) AC_SUBST(MAIN_BINARY,"wine-pthread") ;; esac dnl **** Get the soname for libraries that we load dynamically ****
participants (1)
-
Alexandre Julliard