mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-30 03:01:10 -09:00
- Use official tarball - Switch to meson-package - libcamera-apps unconditionally uses linux/dma-heap.h since version 1.3.0 and1133868763which is only available since kernel >= 5.5 anda69b0e855d- This bump will fix the following build failure raised since bump of libcamera to version 0.3.0 in commit82efc2faa9: /workdir/instance-1/output-1/build/libcamera-apps-1.2.1/core/libcamera_app.cpp: In member function 'void LibcameraApp::ConfigureViewfinder()': /workdir/instance-1/output-1/build/libcamera-apps-1.2.1/core/libcamera_app.cpp:327:25: error: 'class libcamera::CameraConfiguration' has no member named 'transform' 327 | configuration_->transform = options_->transform; | ^~~~~~~~~ It shall be noted that upstream changed its name from libcamera-apps to rpicam-apps perhaps the package shall also be renamed on buildroot side Fixes:82efc2faa9- http://autobuild.buildroot.org/results/18bb6d9c88c1a813a350658b251293744e161916 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
config BR2_PACKAGE_LIBCAMERA_APPS
|
|
bool "libcamera-apps"
|
|
depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS # libcamera
|
|
depends on BR2_INSTALL_LIBSTDCPP # libcamera/boost
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libcamera/boost
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # libcamera
|
|
depends on !BR2_STATIC_LIBS # gnutls/libcamera
|
|
depends on BR2_USE_WCHAR # gnutls/libcamera/boost
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_5
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBCAMERA
|
|
select BR2_PACKAGE_LIBEXIF
|
|
select BR2_PACKAGE_LIBPNG
|
|
select BR2_PACKAGE_TIFF
|
|
select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7 && (BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL)
|
|
select BR2_PACKAGE_LIBDRM if BR2_PACKAGE_XORG7 && (BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL)
|
|
select BR2_PACKAGE_LIBEPOXY if BR2_PACKAGE_XORG7 && (BR2_PACKAGE_HAS_LIBEGL || BR2_PACKAGE_HAS_LIBGL)
|
|
select BR2_PACKAGE_QT5BASE_GUI if BR2_PACKAGE_QT5
|
|
select BR2_PACKAGE_QT5BASE_WIDGETS if BR2_PACKAGE_QT5
|
|
help
|
|
This is a small suite of libcamera-based apps that aim to copy
|
|
the functionality of the existing "raspicam" apps.
|
|
|
|
https://github.com/raspberrypi/libcamera-apps
|
|
|
|
comment "libcamera-apps needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 8, headers >= 5.5"
|
|
depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_8 || BR2_STATIC_LIBS || \
|
|
!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_5
|