mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
meson: Check for gcrypt with pkg-config first
Some distributions patch libgcrypt to provide a pkg-config file, and disable libgcrypt-config. One of these distributions is Yocto, which we use as the basis for the GNOME Continuous build environment. We should check if there's a pkg-config file available for gcrypt, and use it, falling back to libgcrypt-config if the pkg-config file is not found.
This commit is contained in:
parent
6736f9f3e5
commit
4621039c26
23
meson.build
23
meson.build
@ -45,17 +45,20 @@ glib_deps = [
|
||||
]
|
||||
if with_gcrypt
|
||||
min_libgcrypt_version = '1.2.2'
|
||||
libgcrypt_config = find_program('libgcrypt-config')
|
||||
libgcrypt_version = run_command(libgcrypt_config, '--version').stdout().strip()
|
||||
if (libgcrypt_version.version_compare('>' + libgcrypt_version))
|
||||
error('@0@ requires at least gcrypt version @1@, but version found is @2@'
|
||||
.format(meson.project_name(), min_libgcrypt_version, libgcrypt_version))
|
||||
gcrypt_dep = dependency('libgcrypt', version: '>=' + min_libgcrypt_version, required: false)
|
||||
if not gcrypt_dep.found()
|
||||
libgcrypt_config = find_program('libgcrypt-config')
|
||||
libgcrypt_version = run_command(libgcrypt_config, '--version').stdout().strip()
|
||||
if (libgcrypt_version.version_compare('>' + libgcrypt_version))
|
||||
error('@0@ requires at least gcrypt version @1@, but version found is @2@'
|
||||
.format(meson.project_name(), min_libgcrypt_version, libgcrypt_version))
|
||||
endif
|
||||
message('gcrypt version: @0@'.format(libgcrypt_version))
|
||||
gcrypt_dep = declare_dependency(
|
||||
link_args: run_command(libgcrypt_config, '--libs').stdout().strip().split(),
|
||||
compile_args: run_command(libgcrypt_config, '--cflags').stdout().strip().split(),
|
||||
)
|
||||
endif
|
||||
message('gcrypt version: @0@'.format(libgcrypt_version))
|
||||
gcrypt_dep = declare_dependency(
|
||||
link_args: run_command(libgcrypt_config, '--libs').stdout().strip().split(),
|
||||
compile_args: run_command(libgcrypt_config, '--cflags').stdout().strip().split(),
|
||||
)
|
||||
endif
|
||||
|
||||
# Libraries
|
||||
|
Loading…
Reference in New Issue
Block a user