]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix MSVC build for changes in zic.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 19 Jul 2016 21:53:31 +0000 (17:53 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 19 Jul 2016 21:53:31 +0000 (17:53 -0400)
Ooops, I missed back-patching commit f5f15ea6a along with the other stuff.

src/tools/msvc/Mkvcbuild.pm

index cf800ecaa916c2b31d09e27d52ac290fb5aa64ab..3028c841b3b08ee667e223e508f77dcd23cc16d8 100644 (file)
@@ -408,8 +408,7 @@ sub mkvcbuild
        $pgrestore->AddFile('src\backend\parser\kwlookup.c');
 
        my $zic = $solution->AddProject('zic', 'exe', 'utils');
-       $zic->AddFiles('src\timezone', 'zic.c', 'ialloc.c', 'scheck.c',
-               'localtime.c');
+       $zic->AddFiles('src\timezone', 'zic.c');
        $zic->AddReference($libpgport);
 
        if ($solution->{options}->{xml})