summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build13
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')