mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
Added patch to implement CIF reader and download functionality in inseng.dll.
This commit is contained in:
parent
c08a9ab0d6
commit
a358f0984b
File diff suppressed because it is too large
Load Diff
1
patches/inseng-Implementation/definition
Normal file
1
patches/inseng-Implementation/definition
Normal file
@ -0,0 +1 @@
|
||||
Fixes: [39456] Implement CIF reader and download functionality in inseng.dll
|
@ -162,6 +162,7 @@ patch_enable_all ()
|
||||
enable_imagehlp_Cleanup="$1"
|
||||
enable_imagehlp_ImageLoad="$1"
|
||||
enable_imm32_IMMDisableLegacyIME="$1"
|
||||
enable_inseng_Implementation="$1"
|
||||
enable_iphlpapi_System_Ping="$1"
|
||||
enable_iphlpapi_TCP_Table="$1"
|
||||
enable_kernel32_COMSPEC="$1"
|
||||
@ -667,6 +668,9 @@ patch_enable ()
|
||||
imm32-IMMDisableLegacyIME)
|
||||
enable_imm32_IMMDisableLegacyIME="$2"
|
||||
;;
|
||||
inseng-Implementation)
|
||||
enable_inseng_Implementation="$2"
|
||||
;;
|
||||
iphlpapi-System_Ping)
|
||||
enable_iphlpapi_System_Ping="$2"
|
||||
;;
|
||||
@ -4018,6 +4022,22 @@ if test "$enable_imm32_IMMDisableLegacyIME" -eq 1; then
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset inseng-Implementation
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#39456] Implement CIF reader and download functionality in inseng.dll
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * dlls/inseng/Makefile.in, dlls/inseng/icif.c, dlls/inseng/inf.c, dlls/inseng/inseng.spec, dlls/inseng/inseng_main.c,
|
||||
# | dlls/inseng/inseng_private.h, include/inseng.idl
|
||||
# |
|
||||
if test "$enable_inseng_Implementation" -eq 1; then
|
||||
patch_apply inseng-Implementation/0001-inseng-Implement-CIF-reader-and-download-functions.patch
|
||||
(
|
||||
echo '+ { "Michael Müller", "inseng: Implement CIF reader and download functions.", 1 },';
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset iphlpapi-System_Ping
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
|
Loading…
Reference in New Issue
Block a user