All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meson: Fix libbpf detection
@ 2023-03-20 14:08 Laurent Pinchart
  0 siblings, 0 replies; only message in thread
From: Laurent Pinchart @ 2023-03-20 14:08 UTC (permalink / raw)
  To: linux-media; +Cc: Mauro Carvalho Chehab, Gregor Jasny, Hans Verkuil

The libbpf pkgconfig package is called libbpf.pc, not bpf.pc. Fix the
library detection by using the proper name.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 3412a09a9fbb..c7cb6d3255aa 100644
--- a/meson.build
+++ b/meson.build
@@ -80,7 +80,7 @@ dep_librt = cc.find_library('rt')
 dep_qt5 = dependency('qt5', modules: ['Core', 'Gui', 'Widgets', 'OpenGL'],
                      required : get_option('qvidcap').enabled() or get_option('qv4l2').enabled())
 
-dep_libbpf = dependency('bpf', required : get_option('bpf'), version : '>=0.7')
+dep_libbpf = dependency('libbpf', required : get_option('bpf'), version : '>=0.7')
 
 dep_sdl = dependency('SDL2', required: false)
 if not dep_sdl.found()

base-commit: 699bf6886e7c37a410daca7c227ea57fb416e7dd
-- 
Regards,

Laurent Pinchart


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-20 14:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-20 14:08 [PATCH] meson: Fix libbpf detection Laurent Pinchart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.