1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-19 23:22:23 +03:00

vcbuild updates from Magnus:

* After Markos patch, now builds pgcrypto without zlib again
* Updates README with xml info
* xml requires xslt and iconv
* disable unnecessary warning about __cdecl()
* Add a buildenv.bat called from all other bat files to set up things
like PATH for flex/bison. (Can't just set it before calling, doesn't
always work when building from the GUI)
This commit is contained in:
Neil Conway
2007-01-16 21:43:19 +00:00
parent cf57ef4e50
commit 7f58ed1a10
7 changed files with 35 additions and 18 deletions

View File

@@ -14,6 +14,11 @@ sub new {
strver => '',
};
bless $self;
if ($options->{xml}) {
if (!($options->{xslt} && $options->{iconv})) {
die "XML requires both XSLT and ICONV\n";
}
}
return $self;
}