Alexandre Julliard : make_makefiles: Remove updating codepage list, this is done by make_unicode now.

Alexandre Julliard julliard at winehq.org
Wed Mar 18 15:42:00 CDT 2020


Module: wine
Branch: master
Commit: 134074e553ac37ff54459e6fdda5673ffe30f725
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=134074e553ac37ff54459e6fdda5673ffe30f725

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Mar 18 16:39:47 2020 +0100

make_makefiles: Remove updating codepage list, this is done by make_unicode now.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/make_makefiles | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/tools/make_makefiles b/tools/make_makefiles
index bae52dfdba..79b18778a5 100755
--- a/tools/make_makefiles
+++ b/tools/make_makefiles
@@ -498,15 +498,6 @@ sub update_wine_inf()
     push @lines, "\n[SortFiles]", sort grep(/^sort/, @nls_files);
     push @lines, "\n[WineSourceDirs]\n";
     replace_in_file "loader/wine.inf.in", '^\[InfFiles\]', '^\[WineSourceDirs\]', join( "\n", @lines );
-
-    my @codepages = grep /c_\d+\.nls/, @nls_files;
-    @lines = ( "[Nls]" );
-    foreach my $cp (sort { $a <=> $b; } map { /c_(\d+)\.nls/ && $1; } @codepages)
-    {
-        push @lines, sprintf "HKLM,System\\CurrentControlSet\\Control\\Nls\\Codepage,\"%u\",,\"c_%03u.nls\"", $cp, $cp;
-    }
-    push @lines, "\n";
-    replace_in_file "loader/wine.inf.in", '^\[Nls\]', '^$', join( "\n", @lines );
 }
 
 my $git_dir = $ENV{GIT_DIR} || ".git";




More information about the wine-cvs mailing list