diff options
Diffstat (limited to 'src/tools/msvc/config.pl')
-rw-r--r-- | src/tools/msvc/config.pl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/tools/msvc/config.pl b/src/tools/msvc/config.pl new file mode 100644 index 00000000000..0165819d67e --- /dev/null +++ b/src/tools/msvc/config.pl @@ -0,0 +1,18 @@ +# Configuration arguments for vcbuild.
+use strict;
+use warnings;
+
+our $config = {
+ asserts=>1, # --enable-cassert
+ nls=>undef, # --enable-nls=<path>
+ tcl=>'c:\tcl', # --with-tls=<path>
+ perl=>1, # --with-perl
+ python=>'c:\python24', # --with-python=<path>
+ krb5=>'c:\prog\pgsql\depend\krb5', # --with-krb5=<path>
+ ldap=>1, # --with-ldap
+ openssl=>'c:\openssl', # --with-ssl=<path>
+ pthread=>'c:\prog\pgsql\depend\pthread', # foo baz?
+ zlib=>'c:\prog\pgsql\depend\zlib'# --with-zlib=<path>
+};
+
+1;
|