$cfg .= ' --enable-integer-datetimes'
if ($self->{options}->{integer_datetimes});
$cfg .= ' --enable-nls' if ($self->{options}->{nls});
+ $cfg .= ' --enable-tap-tests' if ($self->{options}->{tap_tests});
$cfg .= ' --with-ldap' if ($self->{options}->{ldap});
$cfg .= ' --without-zlib' unless ($self->{options}->{zlib});
$cfg .= ' --with-extra-version' if ($self->{options}->{extraver});
use warnings;
our $config = {
- asserts => 0, # --enable-cassert
+ asserts => 0, # --enable-cassert
# integer_datetimes=>1, # --enable-integer-datetimes - on is now default
# float4byval=>1, # --disable-float4-byval, on 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
- extraver => undef, # --with-extra-version=
- nls => undef, # --enable-nls=
- tcl => undef, # --with-tls=
- 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=
+ ldap => 1, # --with-ldap
+ extraver => undef, # --with-extra-version=
+ nls => undef, # --enable-nls=
+ tap_tests => undef, # --enable-tap-tests
+ tcl => undef, # --with-tls=
+ 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;