Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
40bbcfb0
Commit
40bbcfb0
authored
Jun 20, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Default to using wine-pthread on all platforms.
parent
0ebeb530
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
14 deletions
+3
-14
configure
configure
+2
-9
configure.ac
configure.ac
+1
-5
No files found.
configure
View file @
40bbcfb0
...
...
@@ -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
...
...
configure.ac
View file @
40bbcfb0
...
...
@@ -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 ****
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment