msi-Deferral: Add patchset.

This commit is contained in:
Zebediah Figura 2018-06-20 18:04:07 -05:00
parent 78878ee3b9
commit 7d7e852679
3 changed files with 1028 additions and 0 deletions

View File

@ -0,0 +1 @@
Fixes: [34989] Multiple installers using Caphyon 'Advanced Installer' (AI) technology hang (Atlassian SourceTree v1.3.2, League of Legends 2013+) (deferred type 1 custom action executed before regular type 1 custom action)

View File

@ -192,6 +192,7 @@ patch_enable_all ()
enable_mountmgr_DosDevices="$1"
enable_mscoree_CorValidateImage="$1"
enable_mshtml_HTMLLocation_put_hash="$1"
enable_msi_Deferral="$1"
enable_msi_MsiGetDatabaseState="$1"
enable_msi_msi_vcl_get_cost="$1"
enable_msidb_Implementation="$1"
@ -754,6 +755,9 @@ patch_enable ()
mshtml-HTMLLocation_put_hash)
enable_mshtml_HTMLLocation_put_hash="$2"
;;
msi-Deferral)
enable_msi_Deferral="$2"
;;
msi-MsiGetDatabaseState)
enable_msi_MsiGetDatabaseState="$2"
;;
@ -4563,6 +4567,23 @@ if test "$enable_mshtml_HTMLLocation_put_hash" -eq 1; then
) >> "$patchlist"
fi
# Patchset msi-Deferral
# |
# | This patchset fixes the following Wine bugs:
# | * [#34989] Multiple installers using Caphyon 'Advanced Installer' (AI) technology hang (Atlassian SourceTree v1.3.2,
# | League of Legends 2013+) (deferred type 1 custom action executed before regular type 1 custom action)
# |
# | Modified files:
# | * dlls/msi/action.c, dlls/msi/assembly.c, dlls/msi/classes.c, dlls/msi/custom.c, dlls/msi/files.c, dlls/msi/font.c,
# | dlls/msi/msipriv.h, dlls/msi/tests/custom.c, dlls/msi/tests/install.c
# |
if test "$enable_msi_Deferral" -eq 1; then
patch_apply msi-Deferral/0001-msi-Implement-deferral-for-standard-and-custom-actio.patch
(
printf '%s\n' '+ { "Zebediah Figura", "msi: Implement deferral for standard and custom actions.", 1 },';
) >> "$patchlist"
fi
# Patchset msi-MsiGetDatabaseState
# |
# | Modified files: