|
| 1 | +# Configuration arguments for vcbuild. |
| 2 | +use strict; |
| 3 | +use warnings; |
| 4 | + |
| 5 | +our $config = { |
| 6 | + asserts => 1, # --enable-cassert |
| 7 | + # float4byval=>1, # --disable-float4-byval, on by default |
| 8 | + |
| 9 | + # float8byval=> $platformbits == 64, # --disable-float8-byval, |
| 10 | + # off by default on 32 bit platforms, on by default on 64 bit platforms |
| 11 | + |
| 12 | + # blocksize => 8, # --with-blocksize, 8kB by default |
| 13 | + # wal_blocksize => 8, # --with-wal-blocksize, 8kB by default |
| 14 | + # wal_segsize => 16, # --with-wal-segsize, 16MB by default |
| 15 | + ldap => 1, # --with-ldap |
| 16 | + extraver => undef, # --with-extra-version=<string> |
| 17 | + gss => undef, # --with-gssapi=<path> |
| 18 | + icu => undef, # --with-icu=<path> |
| 19 | + nls => undef, # --enable-nls=<path> |
| 20 | + tap_tests => 1, # --enable-tap-tests |
| 21 | + tcl => undef, # --with-tcl=<path> |
| 22 | + perl => undef, # --with-perl |
| 23 | + python => undef, # --with-python=<path> |
| 24 | + openssl => undef, # --with-openssl=<path> |
| 25 | + uuid => undef, # --with-ossp-uuid |
| 26 | + xml => undef, # --with-libxml=<path> |
| 27 | + xslt => undef, # --with-libxslt=<path> |
| 28 | + iconv => undef, # (not in configure, path to iconv) |
| 29 | + zlib => undef # --with-zlib=<path> |
| 30 | +}; |
| 31 | + |
| 32 | +1; |
0 commit comments