]> granicus.if.org Git - postgresql/blob - src/tools/msvc/config_default.pl
Support --with-extra-version equivalent functionality in MSVC build
[postgresql] / src / tools / msvc / config_default.pl
1 # Configuration arguments for vcbuild.
2 use strict;
3 use warnings;
4
5 our $config = {
6         asserts => 0,    # --enable-cassert
7           # integer_datetimes=>1,   # --enable-integer-datetimes - on is now default
8           # float4byval=>1,         # --disable-float4-byval, on by default
9           # float8byval=>0,         # --disable-float8-byval, off by default
10           # blocksize => 8,         # --with-blocksize, 8kB by default
11           # wal_blocksize => 8,     # --with-wal-blocksize, 8kB by default
12           # wal_segsize => 16,      # --with-wal-segsize, 16MB by default
13         ldap     => 1,       # --with-ldap
14         extraver => undef,   # --with-extra-version=<string>
15         nls      => undef,   # --enable-nls=<path>
16         tcl      => undef,   # --with-tls=<path>
17         perl     => undef,   # --with-perl
18         python   => undef,   # --with-python=<path>
19         openssl  => undef,   # --with-ssl=<path>
20         uuid     => undef,   # --with-ossp-uuid
21         xml      => undef,   # --with-libxml=<path>
22         xslt     => undef,   # --with-libxslt=<path>
23         iconv    => undef,   # (not in configure, path to iconv)
24         zlib     => undef    # --with-zlib=<path>
25 };
26
27 1;