summaryrefslogtreecommitdiffstats
path: root/src/tools/msvc/config_default.pl
blob: 8945e772c2eb1b4086ddaae6e0e07591fe84f2fd (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
28
29
30
31
32
# Copyright (c) 2021-2023, PostgreSQL Global Development Group

# Configuration arguments for vcbuild.
use strict;
use warnings;

our $config = {
	asserts => 0,    # --enable-cassert

	# blocksize => 8,         # --with-blocksize, 8kB by default
	# wal_blocksize => 8,     # --with-wal-blocksize, 8kB by default
	ldap => 1,             # --with-ldap
	extraver => undef,     # --with-extra-version=<string>
	gss => undef,          # --with-gssapi=<path>
	icu => undef,          # --with-icu=<path>
	lz4 => undef,          # --with-lz4=<path>
	zstd => undef,         # --with-zstd=<path>
	nls => undef,          # --enable-nls=<path>
	tap_tests => undef,    # --enable-tap-tests
	tcl => undef,          # --with-tcl=<path>
	perl => undef,         # --with-perl=<path>
	python => undef,       # --with-python=<path>
	openssl => undef,      # --with-ssl=openssl with <path>
	uuid => undef,         # --with-uuid=<path>
	xml => undef,          # --with-libxml=<path>
	xslt => undef,         # --with-libxslt=<path>
	iconv => undef,        # (not in configure, path to iconv)
	zlib => undef          # --with-zlib=<path>
};

1;