diff options
author | Peter Powell <petpow@saberuk.com> | 2018-10-27 04:27:16 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-10-27 04:27:16 +0100 |
commit | 0fc595caac348944f1154cc7dabf44e206e58bf5 (patch) | |
tree | 4e01cd23c3ba6aca2f4d5483501189a4f0bdd9d4 /configure | |
parent | 2e4619791893e625017d5faab883683d473132a1 (diff) |
Enable as many extra modules as possible when running configure.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -299,9 +299,25 @@ if (prompt_bool $interactive, $question, 0) { } else { # TODO: finish modulemanager rewrite and replace this code with: # system './modulemanager', 'enable', '--auto'; - enable_extras 'm_ssl_gnutls.cpp' unless system 'pkg-config --exists gnutls >/dev/null 2>&1'; - enable_extras 'm_ssl_mbedtls.cpp' if -e '/usr/include/mbedtls/ssl.h'; - enable_extras 'm_ssl_openssl.cpp' unless system 'pkg-config --exists openssl >/dev/null 2>&1'; + my %modules = ( + # Missing: m_ldap, m_regex_stdlib, m_ssl_mbedtls + 'm_geoip.cpp' => 'pkg-config --exists geoip', + 'm_mysql.cpp' => 'mysql_config --version', + 'm_pgsql.cpp' => 'pg_config --version', + 'm_regex_pcre.cpp' => 'pcre-config --version', + 'm_regex_posix.cpp' => undef, + 'm_regex_re2.cpp' => 'pkg-config --exists re2', + 'm_regex_tre.cpp' => 'pkg-config --exists tre', + 'm_sqlite3.cpp' => 'pkg-config --exists sqlite3', + 'm_ssl_gnutls.cpp' => 'pkg-config --exists gnutls', + 'm_ssl_openssl.cpp' => 'pkg-config --exists openssl', + 'm_sslrehashsignal.cpp' => undef, + ); + while (my ($module, $command) = each %modules) { + unless (defined $command && system "$command 1>/dev/null 2>/dev/null") { + enable_extras $module; + } + } } # Generate SSL certificates. |