Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

msxml3: added downloading dll with resources for 64-bit #2231

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -11981,6 +11981,9 @@ load_msxml3()
# ftp://94.79.56.169/common/Client/MSXML%204.0%20Service%20Pack%202/msxml3.msi
w_download https://media.codeweavers.com/pub/other/msxml3.msi f9c678f8217e9d4f9647e8a1f6d89a7c26a57b9e9e00d39f7487493dd7b4e36c

# Downloading 64-bit msxml3r.dll (resources Dll), which not included in Service Pack 7.
w_download https://cloudflare-ipfs.com/ipfs/QmanVf9v1NDfBRieGmuHLNkZyoxndijitbTJxs9MyGVpCc?filename=msxml3r.dll 3efa5c3a8ee14c2de9f9ea5507a9950a0d991184dd723c79aca786e0b5fd7cf5 msxml3r.dll

# It won't install on top of Wine's msxml3, which has a pretty high version number, so delete Wine's fake DLL
rm "${W_SYSTEM32_DLLS}"/msxml3.dll
w_override_dlls native msxml3
Expand All @@ -12003,6 +12006,7 @@ load_msxml3()
if [ "${W_ARCH}" = "win64" ]; then
helper_win7sp1_x64 amd64_microsoft-windows-msxml30_31bf3856ad364e35_6.1.7601.17514_none_e6944609ad75ac7d/msxml3.dll
w_try_cp_dll "${W_TMP}/amd64_microsoft-windows-msxml30_31bf3856ad364e35_6.1.7601.17514_none_e6944609ad75ac7d/msxml3.dll" "${W_SYSTEM64_DLLS}/msxml3.dll"
w_try_cp_dll "${W_CACHE}/${W_PACKAGE}/msxml3r.dll" "${W_SYSTEM64_DLLS}/msxml3r.dll"
fi
}

Expand Down
Loading