From 5a8bd3fbafaac6e1bfea139089cccd9d0cd5c2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Fri, 31 May 2024 00:06:41 +0200 Subject: [PATCH] meson: Add new Fruity private requirements to .pc --- meson.build | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index 95faf67e5..055918a2a 100644 --- a/meson.build +++ b/meson.build @@ -450,12 +450,10 @@ openssl_dep = dependency('openssl', ) if have_fruity_backend - backend_deps_private += [ - dependency('libnghttp2'), - dependency('libngtcp2'), - dependency('libngtcp2_crypto_quictls'), - dependency('lwip'), - ] + foreach dep : ['libnghttp2', 'libngtcp2', 'libngtcp2_crypto_quictls', 'lwip'] + backend_deps_private += dependency(dep) + backend_reqs_private += dep + endforeach endif if quickjs_dep.found()