# Copyright (c) 2021-2022, PostgreSQL Global Development Group # Configuration arguments for vcbuild. use strict; use warnings; our $config = { asserts => 0, # --enable-cassert # 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= lz4 => undef, # --with-lz4= zstd => undef, # --with-zstd= 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-ssl=openssl with uuid => undef, # --with-uuid= xml => undef, # --with-libxml= xslt => undef, # --with-libxslt= iconv => undef, # (not in configure, path to iconv) zlib => undef # --with-zlib= }; 1;