diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-14 12:52:24 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-14 12:52:24 +0200 |
commit | 298fd6bf83b584345f0ba67f92fd3c232039b70a (patch) | |
tree | c3ac6b364b03db8a414cb3a54eb0baf6983813dc | |
parent | 81518a31257c1ff024ff719c363d01003acf2895 (diff) |
bump version; remove disablers from build
-rw-r--r-- | meson.build | 13 |
1 files 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') |