]> granicus.if.org Git - postgresql/blob - src/tools/msvc/config_default.pl
Remove support for native krb5 authentication
[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         nls     => undef,    # --enable-nls=<path>
15         tcl     => undef,    # --with-tls=<path>
16         perl    => undef,    # --with-perl
17         python  => undef,    # --with-python=<path>
18         openssl => undef,    # --with-ssl=<path>
19         uuid    => undef,    # --with-ossp-uuid
20         xml     => undef,    # --with-libxml=<path>
21         xslt    => undef,    # --with-libxslt=<path>
22         iconv   => undef,    # (not in configure, path to iconv)
23         zlib    => undef     # --with-zlib=<path>
24 };
25
26 1;