|
1 | 1 |
|
2 | 2 | # -*-perl-*- hey - emacs - this is a perl file
|
3 | 3 |
|
4 |
| -# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.13 2010/01/09 15:25:41 adunstan Exp $ |
| 4 | +# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.14 2010/03/02 17:06:51 adunstan Exp $ |
5 | 5 |
|
6 | 6 | use strict;
|
7 | 7 |
|
|
14 | 14 |
|
15 | 15 | chdir"../../.."if (-d"../../../src/tools/msvc");
|
16 | 16 |
|
| 17 | +require'src/tools/msvc/config.pl'; |
| 18 | + |
17 | 19 | # buildenv.pl is for specifying the build environment settings
|
18 | 20 | # it should contian lines like:
|
19 | 21 | # $ENV{PATH} = "c:/path/to/bison/bin;$ENV{PATH}";
|
@@ -190,6 +192,7 @@ sub contribcheck
|
190 | 192 | my$mstat = 0;
|
191 | 193 | foreachmy$module (glob("*"))
|
192 | 194 | {
|
| 195 | +nextif ($moduleeq'xml2' && !$config->{xml}); |
193 | 196 | nextunless-d"$module/sql" &&
|
194 | 197 | -d"$module/expected" &&
|
195 | 198 | (-f"$module/GNUmakefile" ||-f"$module/Makefile");
|
|