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
1582ae6b
Commit
1582ae6b
authored
Nov 28, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Allow building a WoW64 tree inside the source directory.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
123b9237
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
19 deletions
+5
-19
configure
configure
+2
-9
configure.ac
configure.ac
+3
-10
No files found.
configure
View file @
1582ae6b
...
...
@@ -5648,17 +5648,10 @@ enable_win64=${enable_win64:-no}
enable_winetest
=
${
enable_winetest
:-
$enable_tests
}
if
test
-n
"
$with_wine64
"
if
test
"x
$enable_win64
"
=
"xyes
"
then
if
test
"x
$enable_win64
"
=
"xyes"
then
as_fn_error
$?
"--enable-win64 and --with-wine64 are mutually exclusive.
test
-z
"
$with_wine64
"
||
as_fn_error
$?
"--enable-win64 and --with-wine64 are mutually exclusive.
--enable-win64 should be used in the 64-bit build tree, --with-wine64 in the 32-bit Wow64 build tree."
"
$LINENO
"
5
fi
test
"
$srcdir
"
!=
.
||
as_fn_error
$?
"--with-wine64 cannot be used when building inside the source tree.
You should create a separate build directory and run configure from there."
"
$LINENO
"
5
elif
test
"x
$enable_win64
"
=
"xyes"
then
test
"x
$libdir
"
!=
"x
\$
{exec_prefix}/lib"
||
libdir
=
"
\$
{exec_prefix}/lib64"
fi
...
...
configure.ac
View file @
1582ae6b
...
...
@@ -225,18 +225,11 @@ enable_win64=${enable_win64:-no}
dnl Disable winetest too if tests are disabled
enable_winetest=${enable_winetest:-$enable_tests}
dnl Some special cases for the
wow64
build
if test
-n "$with_wine64
"
dnl Some special cases for the
64-bit
build
if test
"x$enable_win64" = "xyes
"
then
if test "x$enable_win64" = "xyes"
then
AC_MSG_ERROR([--enable-win64 and --with-wine64 are mutually exclusive.
test -z "$with_wine64" || AC_MSG_ERROR([--enable-win64 and --with-wine64 are mutually exclusive.
--enable-win64 should be used in the 64-bit build tree, --with-wine64 in the 32-bit Wow64 build tree.])
fi
test "$srcdir" != . || AC_MSG_ERROR([--with-wine64 cannot be used when building inside the source tree.
You should create a separate build directory and run configure from there.])
elif test "x$enable_win64" = "xyes"
then
test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib64"
fi
...
...
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