From 298fd6bf83b584345f0ba67f92fd3c232039b70a Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Sun, 14 Jul 2024 12:52:24 +0200 Subject: bump version; remove disablers from build --- meson.build | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/meson.build b/meson.build index 19aabcd..c956273 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', 'cpp', meson_version : '>=1.3', - version : '4.2.29a', + version : '4.2.30', default_options : ['c_std=gnu99', 'cpp_std=c++11'], ) @@ -16,24 +16,19 @@ if get_option('build-clients') or get_option('build-pam') fallback : ['ucspi-ssl', 'ucspissl_dep'], default_options : ['lib-only=true'], ) -else - ucspissl_dep = disabler() endif -crypt_dep = get_option('build-pam') ? dependency('libcrypt') : disabler() +if get_option('build-pam') + crypt_dep = dependency('libcrypt') +endif if get_option('build-clients') idn2_dep = dependency('libidn2', required : get_option('idn2')) -else - idn2_dep = disabler() endif if get_option('build-clients') or get_option('build-dkim') or get_option('build-pam') ssl_dep = dependency('libssl', version : '>=1.1') crypto_dep = dependency('libcrypto') -else - ssl_dep = disabler() - crypto_dep = disabler() endif subdir('src') -- cgit v1.2.3