Added patch to improve fontsub.CreateFontPackage stub implementation.

This commit is contained in:
Sebastian Lackner
2016-04-27 16:43:00 +02:00
parent 52c70bd232
commit 95899b69cc
3 changed files with 77 additions and 0 deletions

View File

@@ -144,6 +144,7 @@ patch_enable_all ()
enable_dxva2_Video_Decoder="$1"
enable_explorer_Video_Registry_Key="$1"
enable_fonts_Missing_Fonts="$1"
enable_fontsub_CreateFontPackage="$1"
enable_fsutil_Stub_Program="$1"
enable_gdi32_Lazy_Font_Initialization="$1"
enable_gdi32_MultiMonitor="$1"
@@ -603,6 +604,9 @@ patch_enable ()
fonts-Missing_Fonts)
enable_fonts_Missing_Fonts="$2"
;;
fontsub-CreateFontPackage)
enable_fontsub_CreateFontPackage="$2"
;;
fsutil-Stub_Program)
enable_fsutil_Stub_Program="$2"
;;
@@ -3633,6 +3637,21 @@ if test "$enable_fonts_Missing_Fonts" -eq 1; then
) >> "$patchlist"
fi
# Patchset fontsub-CreateFontPackage
# |
# | This patchset fixes the following Wine bugs:
# | * [#40517] Improve fontsub.CreateFontPackage stub implementation
# |
# | Modified files:
# | * dlls/fontsub/main.c, include/fontsub.h
# |
if test "$enable_fontsub_CreateFontPackage" -eq 1; then
patch_apply fontsub-CreateFontPackage/0001-fontsub-CreateFontPackage-straight-copy.patch
(
echo '+ { "Nikolay Sivov", "fontsub: CreateFontPackage() straight copy.", 1 },';
) >> "$patchlist"
fi
# Patchset fsutil-Stub_Program
# |
# | This patchset fixes the following Wine bugs: