# Configuration arguments for vcbuild. use strict; use warnings; our $config = { asserts => 0, # --enable-cassert # float4byval=>1, # --disable-float4-byval, on by default # float8byval=> $platformbits == 64, # --disable-float8-byval, # off by default on 32 bit platforms, on by default on 64 bit platforms # 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= gss => undef, # --with-gssapi= icu => undef, # --with-icu= nls => undef, # --enable-nls= tap_tests => undef, # --enable-tap-tests tcl => undef, # --with-tcl= perl => undef, # --with-perl python => undef, # --with-python= openssl => undef, # --with-openssl= uuid => undef, # --with-ossp-uuid xml => undef, # --with-libxml= xslt => undef, # --with-libxslt= iconv => undef, # (not in configure, path to iconv) zlib => undef # --with-zlib= }; 1;