]> granicus.if.org Git - postgresql/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 3782ec53a231ca2fa25b1f37182d09f29bdb084c..cd18f00a1c76b60fcbea76a5d52cd75797804aff 100644 (file)
@@ -435,8 +435,7 @@ sub mkvcbuild
        $pgrestore->AddLibrary('ws2_32.lib');
 
        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, $libpgcommon);
 
        if ($solution->{options}->{xml})