aboutsummaryrefslogtreecommitdiff
path: root/src/tools/msvc/config.pl
blob: 0165819d67e28c02534bf002195db7eb48a3907c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;