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
2cdfd4d7
Commit
2cdfd4d7
authored
Feb 18, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Fix previous change to still build all the binaries on
x86_64 in 32-bit mode.
parent
dafa5bf4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
16 deletions
+26
-16
configure
configure
+14
-9
configure.ac
configure.ac
+12
-7
No files found.
configure
View file @
2cdfd4d7
...
...
@@ -13115,18 +13115,23 @@ case $host_os in
;;
esac
case
$host
in
*
i[3456789]86
*
-linux
*
|
*
i[3456789]86
*
-k
*
bsd
*
-gnu
)
MAIN_BINARY
=
"wine-glibc"
EXTRA_BINARIES
=
"wine-kthread wine-pthread wine-preloader
"
case
$host
_cpu
in
*
i[3456789]86
*
)
case
$host_os
in
linux
*
|
k
*
bsd
*
-gnu
)
MAIN_BINARY
=
"wine-glibc
"
;;
darwin
*
)
MAIN_BINARY
=
"wine-pthread"
EXTRA_BINARIES
=
"wine-kthread wine-pthread wine-preloader"
;;
darwin
*
)
MAIN_BINARY
=
"wine-pthread"
;;
*
i[3456789]86
*
)
MAIN_BINARY
=
"wine-kthread"
*
)
MAIN_BINARY
=
"wine-kthread"
;;
*
)
MAIN_BINARY
=
"wine-pthread"
esac
;;
*
)
MAIN_BINARY
=
"wine-pthread"
;;
esac
...
...
configure.ac
View file @
2cdfd4d7
...
...
@@ -1081,14 +1081,19 @@ case $host_os in
;;
esac
case $host in
*i[[3456789]]86*-linux* | *i[[3456789]]86*-k*bsd*-gnu)
AC_SUBST(MAIN_BINARY,"wine-glibc")
AC_SUBST(EXTRA_BINARIES,"wine-kthread wine-pthread wine-preloader")
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*)
AC_SUBST(MAIN_BINARY,"wine-pthread") ;;
*)
AC_SUBST(MAIN_BINARY,"wine-kthread") ;;
esac
;;
darwin*) AC_SUBST(MAIN_BINARY,"wine-pthread") ;;
*i[[3456789]]86*) AC_SUBST(MAIN_BINARY,"wine-kthread") ;;
*) AC_SUBST(MAIN_BINARY,"wine-pthread") ;;
*) 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