aboutsummaryrefslogtreecommitdiff
path: root/src/tools/msvc/config_default.pl
blob: 2489d3827fda84fdc1b6978c561ad00035fe61fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Configuration arguments for vcbuild.
use strict;
use warnings;

our $config = {
	asserts => 0,    # --enable-cassert
	  # integer_datetimes=>1,   # --enable-integer-datetimes - on is now default
	  # float4byval=>1,         # --disable-float4-byval, on by default
	  # float8byval=>0,         # --disable-float8-byval, off by default
	  # blocksize => 8,         # --with-blocksize, 8kB by default
	  # wal_blocksize => 8,     # --with-wal-blocksize, 8kB by default
	  # wal_segsize => 16,      # --with-wal-segsize, 16MB by default
	ldap    => 1,        # --with-ldap
	nls     => undef,    # --enable-nls=<path>
	tcl     => undef,    # --with-tls=<path>
	perl    => undef,    # --with-perl
	python  => undef,    # --with-python=<path>
	krb5    => undef,    # --with-krb5=<path>
	openssl => undef,    # --with-ssl=<path>
	uuid    => undef,    # --with-ossp-uuid
	xml     => undef,    # --with-libxml=<path>
	xslt    => undef,    # --with-libxslt=<path>
	iconv   => undef,    # (not in configure, path to iconv)
	zlib    => undef     # --with-zlib=<path>
};

1;