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
4bf9d98c
Commit
4bf9d98c
authored
Oct 14, 2004
by
Vincent Béron
Committed by
Alexandre Julliard
Oct 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't build wine-preloader for other cpus than x86.
parent
80427737
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
configure
configure
+6
-2
configure.ac
configure.ac
+4
-1
No files found.
configure
View file @
4bf9d98c
...
...
@@ -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"
;;
...
...
configure.ac
View file @
4bf9d98c
...
...
@@ -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*)
...
...
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