1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

Exclude contrib/intagg from the list of MSVC project files to be generated,

since it's now just a SQL module and no C code.
This commit is contained in:
Magnus Hagander 2008-11-14 22:12:37 +00:00
parent 5c9c08d250
commit 772eedb6bb

View File

@ -3,7 +3,7 @@ package Mkvcbuild;
# #
# Package that generates build files for msvc build # Package that generates build files for msvc build
# #
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.31 2008/05/21 19:51:01 meskes Exp $ # $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.32 2008/11/14 22:12:37 mha Exp $
# #
use Carp; use Carp;
use Win32; use Win32;
@ -31,7 +31,7 @@ my $contrib_extrasource = {
'cube' => ['cubescan.l','cubeparse.y'], 'cube' => ['cubescan.l','cubeparse.y'],
'seg' => ['segscan.l','segparse.y'] 'seg' => ['segscan.l','segparse.y']
}; };
my @contrib_excludes = ('pgcrypto'); my @contrib_excludes = ('pgcrypto','intagg');
sub mkvcbuild sub mkvcbuild
{ {