~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to src/tools/msvc/config_default.pl

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
    krb5=>undef,                        # --with-krb5=<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;