]> 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 528983be706b136bfcf791f4e8b76cdcf3f148c4..304edf915f92a3b5dc288d0d73816c0fcbdedfcb 100644 (file)
@@ -440,8 +440,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($libpgcommon, $libpgport);
 
        if ($solution->{options}->{xml})