Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
4422d22c
Commit
4422d22c
authored
May 10, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Create a wine64 symlink in 64-bit build trees.
parent
84fd1f58
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
7 deletions
+20
-7
.gitignore
.gitignore
+1
-0
configure
configure
+6
-0
configure.ac
configure.ac
+2
-0
make_makefiles
tools/make_makefiles
+1
-0
winewrapper
tools/winewrapper
+10
-7
No files found.
.gitignore
View file @
4422d22c
...
...
@@ -17,6 +17,7 @@
/configure.lineno
/tags
/wine
/wine64
Makefile
dlldata.c
dlls/*/*.def
...
...
configure
View file @
4422d22c
...
...
@@ -4157,6 +4157,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
esac
enable_win16
=
${
enable_win16
:-
no
}
enable_win64
=
${
enable_win64
:-
no
}
enable_winetest
=
${
enable_winetest
:-
$enable_tests
}
...
...
@@ -14977,6 +14978,10 @@ test "$srcdir" = "." || wine_fn_config_symlink tools/l_intl.nls
fi
ac_config_links
=
"
$ac_config_links
wine:tools/winewrapper"
wine_fn_config_symlink wine
if
test
"x
$enable_win64
"
!=
xno
;
then
ac_config_links
=
"
$ac_config_links
wine64:tools/winewrapper"
wine_fn_config_symlink wine64
fi
ac_config_commands
=
"
$ac_config_commands
dlls/gdi32/dibdrv"
...
...
@@ -16468,6 +16473,7 @@ do
"fonts/tahomabd.ttf") CONFIG_LINKS="
$CONFIG_LINKS
fonts/tahomabd.ttf:fonts/tahomabd.ttf" ;;
"tools/l_intl.nls") CONFIG_LINKS="
$CONFIG_LINKS
tools/l_intl.nls:tools/l_intl.nls" ;;
"wine") CONFIG_LINKS="
$CONFIG_LINKS
wine:tools/winewrapper" ;;
"wine64") CONFIG_LINKS="
$CONFIG_LINKS
wine64:tools/winewrapper" ;;
"dlls/gdi32/dibdrv") CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/gdi32/dibdrv" ;;
"dlls/gdi32/enhmfdrv") CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/gdi32/enhmfdrv" ;;
"dlls/gdi32/mfdrv") CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/gdi32/mfdrv" ;;
...
...
configure.ac
View file @
4422d22c
...
...
@@ -190,6 +190,7 @@ esac
dnl enable_win16 defaults to yes on x86, to no on other CPUs
enable_win16=${enable_win16:-no}
enable_win64=${enable_win64:-no}
dnl Disable winetest too if tests are disabled
enable_winetest=${enable_winetest:-$enable_tests}
...
...
@@ -2371,6 +2372,7 @@ WINE_CONFIG_SYMLINK(fonts/tahoma.ttf,,enable_fonts)
WINE_CONFIG_SYMLINK(fonts/tahomabd.ttf,,enable_fonts)
WINE_CONFIG_SYMLINK(tools/l_intl.nls,,enable_tools)
WINE_CONFIG_SYMLINK(wine,tools/winewrapper)
WINE_CONFIG_SYMLINK(wine64,tools/winewrapper,enable_win64)
WINE_CONFIG_EXTRA_DIR(dlls/gdi32/dibdrv)
WINE_CONFIG_EXTRA_DIR(dlls/gdi32/enhmfdrv)
...
...
tools/make_makefiles
View file @
4422d22c
...
...
@@ -88,6 +88,7 @@ my @ignores = (
"/TAGS"
,
"/tags"
,
"/wine"
,
"/wine64"
,
"Makefile"
,
"dlldata.c"
,
"dlls/*/*.def"
,
...
...
tools/winewrapper
View file @
4422d22c
...
...
@@ -22,10 +22,13 @@
# first determine the directory that contains the app itself
appdir
=
""
name
=
$0
case
"
$0
"
in
*
/
*
)
# $0 contains a path, use it
appdir
=
`
dirname
"
$0
"
`
name
=
`
basename
"
$0
"
`
;;
*
)
# no directory in $0, search in PATH
...
...
@@ -34,7 +37,7 @@ case "$0" in
for
d
in
$PATH
do
IFS
=
$saved_ifs
if
[
-x
"
$d
/
$
0
"
]
if
[
-x
"
$d
/
$
name
"
]
then
appdir
=
"
$d
"
break
...
...
@@ -43,7 +46,7 @@ case "$0" in
;;
esac
# now find the top-level directory of the
source
tree
# now find the top-level directory of the
build
tree
if
[
-x
"
$appdir
/server/wineserver"
]
then
topdir
=
"
$appdir
"
...
...
@@ -54,7 +57,7 @@ then topdir="$appdir/../.."
elif
[
-x
"
$appdir
/../../../server/wineserver"
]
then
topdir
=
"
$appdir
/../../.."
else
echo
"
$
0
: could not locate Wine source
tree"
echo
"
$
name
: could not locate the Wine build
tree"
exit
1
fi
...
...
@@ -81,12 +84,12 @@ else
export
LD_LIBRARY_PATH
fi
if
[
-x
"
$topdir
/loader/wine"
]
if
[
-x
"
$topdir
/loader/
$name
"
]
then
WINELOADER
=
"
$topdir
/loader/
$name
"
elif
[
-x
"
$topdir
/loader/wine"
]
then
WINELOADER
=
"
$topdir
/loader/wine"
elif
[
-x
"
$topdir
/loader/wine64"
]
then
WINELOADER
=
"
$topdir
/loader/wine64"
else
echo
"
$
0
: could not find the w
ine loader in
$topdir
"
echo
"
$
name
: could not find the W
ine loader in
$topdir
"
exit
1
fi
export
WINELOADER
...
...
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