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
2510df00
Commit
2510df00
authored
Oct 04, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Try installing Gecko from the global data dir too.
parent
a9b4f82c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Makefile.in
dlls/mshtml/Makefile.in
+1
-1
install.c
dlls/mshtml/install.c
+5
-3
No files found.
dlls/mshtml/Makefile.in
View file @
2510df00
MODULE
=
mshtml.dll
IMPORTLIB
=
mshtml
IMPORTS
=
strmiids uuid urlmon shlwapi shell32 ole32 oleaut32 user32 gdi32 advapi32
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
-DGECKO_DATADIR
=
"
\"
$(datadir)
\"
"
DELAYIMPORTS
=
wininet
C_SRCS
=
\
...
...
dlls/mshtml/install.c
View file @
2510df00
...
...
@@ -258,10 +258,12 @@ static BOOL install_from_default_dir(void)
ret
=
install_from_unix_file
(
file_name
);
heap_free
(
file_name
);
if
(
ret
)
return
TRUE
;
return
install_from_unix_file
(
"/usr/share/wine/gecko/"
GECKO_FILE_NAME
);
if
(
!
ret
)
ret
=
install_from_unix_file
(
GECKO_DATADIR
"/wine/gecko/"
GECKO_FILE_NAME
);
if
(
!
ret
&&
strcmp
(
GECKO_DATADIR
,
"/usr/share"
))
ret
=
install_from_unix_file
(
"/usr/share/wine/gecko/"
GECKO_FILE_NAME
);
return
ret
;
}
static
HRESULT
WINAPI
InstallCallback_QueryInterface
(
IBindStatusCallback
*
iface
,
...
...
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