From ad04be95f8baea5818919eb27e78c2926733a8cb Mon Sep 17 00:00:00 2001 From: Thibault Payet Date: Wed, 19 Aug 2020 18:22:55 +0200 Subject: Configure libnitrokey-1.pc with hidapi on FreeBSD and with hidapi-libusb on other platform --- meson.build | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 8a51b66..58abb1b 100644 --- a/meson.build +++ b/meson.build @@ -107,12 +107,22 @@ ext_libnitrokey = declare_dependency( include_directories : inc_libnitrokey, ) +if meson.version().version_compare('>= 0.48.0') + dep_hidapi_name = dep_hidapi.name() +else + if target_machine.system() == 'freebsd' + dep_hidapi_name = 'hidapi' + else + dep_hidapi_name = 'hidapi-libusb' + endif +endif + pkg.generate( name : meson.project_name(), filebase : 'libnitrokey-1', libraries : libnitrokey, version : meson.project_version(), - requires_private : 'hidapi-libusb', + requires_private : dep_hidapi_name, description : 'Library for communicating with Nitrokey in a clean and easy manner', install : true, ) -- cgit v1.2.1