Commit 92aed3b7 authored by Nurlan's avatar Nurlan

Updated patch for ie8: removed dll that cannot be installed or registered (eterbug #18051)

parent 0b2ac3a5
From 6eef461e85caa4dccaa06fbba0a85adba1aefcdd Mon Sep 17 00:00:00 2001
From 9416cfb35636f12a8ceb1c5cf9e8b869f6461781 Mon Sep 17 00:00:00 2001
From: Nurlan Usenov <suren@etersoft.ru>
Date: Thu, 13 Mar 2025 15:32:18 +0300
Subject: [PATCH 1/1] ie8: removed dll that cannot be registered
Subject: [PATCH] ie8: removed dll that cannot be installed or registered
---
src/winetricks | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/src/winetricks b/src/winetricks
index ef21df4..1d6c291 100755
index ef21df4..916e9cc 100755
--- a/src/winetricks
+++ b/src/winetricks
@@ -15478,16 +15478,7 @@ load_ie8()
@@ -15478,16 +15478,18 @@ load_ie8()
# Work around DLL registration bug until ierunonce/RunOnce/wineboot is fixed
# FIXME: whittle down this list
......@@ -25,10 +22,21 @@ index ef21df4..1d6c291 100755
- shdocvw.dll shell32.dll urlmon.dll vbscript.dll webcheck.dll \
- wshcon.dll wshext.dll asctrls.ocx hhctrl.ocx mscomct2.ocx \
- plugin.ocx proctexe.ocx tdc.ocx uxtheme.dll webcheck.dll wshom.ocx; do
+
+ # The list has been divided to avoid errors when installing the dll using "/i"
+ # And removed the dll files that cannot be installed or registered
+ for i in actxprxy.dll ddraw.dll dispex.dll dsound.dll iedkcs32.dll \
+ iepeers.dll inetcomm.dll jscript.dll mlang.dll msctf.dll mshtmled.dll \
+ msi.dll msimtf.dll msident.dll mstime.dll msxml3.dll ole32.dll \
+ oleaut32.dll olepro32.dll quartz.dll rpcrt4.dll rsabase.dll rsaenh.dll \
+ scrobj.dll scrrun.dll vbscript.dll hhctrl.ocx tdc.ocx wshom.ocx; do
+ w_try_regsvr32 ${i} > /dev/null 2>&1
+ done
+
+ for i in browseui.dll shdocvw.dll shell32.dll urlmon.dll; do
w_try_regsvr32 /i ${i} > /dev/null 2>&1
done
--
2.33.8
2.42.2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment