diff options
author | Vladimir Druzenko <vvd@FreeBSD.org> | 2024-06-02 10:27:39 +0000 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2024-06-02 10:27:39 +0000 |
commit | 533628264cd5562ca77a240fd36ff63a64b66800 (patch) | |
tree | c18181540bd2d14e81a94e0354c4ff666f545b8d /graphics/gegl | |
parent | 953513c131ba987d096fa51d0f1d656b81a9aaa3 (diff) |
graphics/gegl: fix build with default option FFMPEG off and V4L on
Run-time dependency libv4l1 found: NO (tried pkgconfig)
meson.build:393:12: ERROR: Dependency "libv4l1" not found, tried pkgconfig
PR: 279280
Reported by: madpilot
Diffstat (limited to 'graphics/gegl')
-rw-r--r-- | graphics/gegl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/gegl/Makefile b/graphics/gegl/Makefile index adfdd91f051f..80aa266fdfd1 100644 --- a/graphics/gegl/Makefile +++ b/graphics/gegl/Makefile @@ -120,7 +120,8 @@ TIFF_MESON_ENABLED= libtiff UMFPACK_LIB_DEPENDS= libumfpack.so:math/suitesparse-umfpack UMFPACK_MESON_ENABLED= umfpack -V4L_BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat +V4L_BUILD_DEPENDS= libv4l>0:multimedia/libv4l \ + v4l_compat>=0:multimedia/v4l_compat V4L_RUN_DEPENDS= libv4l>0:multimedia/libv4l V4L_MESON_ENABLED= libv4l libv4l2 V4L_VARS= LICENSE+=LGPL20+ |