d0f3c9de49
- remove 0001-fixup-lfs-mismatch-in-preload-libraries.patch (Upstream applied [1]) - remove 0002-keytable-fix-EVIOCSCLOCKID-related-compile-failure.patch (Upstream applied [2]) - remove 0003-Build-sdlcam-only-if-jpeg-is-enabled.patch (Upstream applied [3]) - remove 0004-v4l2-compliance-needs-fork.patch (Upstream applied [4]) Despite all patches (specially the ones touching configure.ac/Makefile.am) keep LIBV4L_AUTORECONF = YES to get correct utils/qv4l linker flags (seems the original debian based libtool sets a wrong link_all_deplibs parameter), see [5] for details. [1] https://git.linuxtv.org/v4l-utils.git/commit/?id=9f0354c3320f3cc62983f726bfed66e1d0c21f83 [2] https://git.linuxtv.org/v4l-utils.git/commit/?id=a3367e92f4b06667a36fb9485f22f7df52891a2f [3] https://git.linuxtv.org/v4l-utils.git/commit/?id=692c2f0f35dd663e84d363867f2841d387726154 [4] https://git.linuxtv.org/v4l-utils.git/commit/?id=577ab225929c4e8dce7d2b911eeed38469a559bb [5] http://lists.busybox.net/pipermail/buildroot/2019-October/261558.html Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
90 lines
2.5 KiB
Makefile
90 lines
2.5 KiB
Makefile
################################################################################
|
|
#
|
|
# libv4l
|
|
#
|
|
################################################################################
|
|
|
|
LIBV4L_VERSION = 1.18.0
|
|
LIBV4L_SOURCE = v4l-utils-$(LIBV4L_VERSION).tar.bz2
|
|
LIBV4L_SITE = https://linuxtv.org/downloads/v4l-utils
|
|
LIBV4L_INSTALL_STAGING = YES
|
|
LIBV4L_DEPENDENCIES = host-pkgconf
|
|
LIBV4L_CONF_OPTS = --disable-doxygen-doc --disable-qvidcap
|
|
# needed to get utils/qv4l link flags right
|
|
LIBV4L_AUTORECONF = YES
|
|
# add host-gettext for AM_ICONV macro
|
|
LIBV4L_DEPENDENCIES += host-gettext
|
|
|
|
# fix uclibc-ng configure/compile
|
|
LIBV4L_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
|
|
|
# v4l-utils components have different licences, see v4l-utils.spec for details
|
|
LIBV4L_LICENSE = GPL-2.0+ (utilities), LGPL-2.1+ (libraries)
|
|
LIBV4L_LICENSE_FILES = COPYING COPYING.libv4l lib/libv4l1/libv4l1-kernelcode-license.txt
|
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
|
LIBV4L_DEPENDENCIES += alsa-lib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
LIBV4L_DEPENDENCIES += argp-standalone
|
|
LIBV4L_LIBS += -largp
|
|
endif
|
|
|
|
LIBV4L_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LIBV4L_DEPENDENCIES += jpeg
|
|
LIBV4L_CONF_OPTS += --with-jpeg
|
|
else
|
|
LIBV4L_CONF_OPTS += --without-jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
|
|
LIBV4L_DEPENDENCIES += libgl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
LIBV4L_CONF_OPTS += --with-udevdir=/usr/lib/udev
|
|
LIBV4L_DEPENDENCIES += udev
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLU),y)
|
|
LIBV4L_DEPENDENCIES += libglu
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBV4L_UTILS),y)
|
|
LIBV4L_CONF_OPTS += --enable-v4l-utils
|
|
LIBV4L_DEPENDENCIES += $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
# IR BPF decoder support needs toolchain with linux-headers >= 3.18
|
|
# libelf and clang support
|
|
LIBV4L_CONF_OPTS += --disable-bpf
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE)$(BR2_PACKAGE_QT5BASE_GUI)$(BR2_PACKAGE_QT5BASE_WIDGETS),yyy)
|
|
LIBV4L_CONF_OPTS += --enable-qv4l2
|
|
LIBV4L_DEPENDENCIES += qt5base
|
|
# protect against host version detection of moc-qt5/rcc-qt5/uic-qt5
|
|
LIBV4L_CONF_ENV += \
|
|
ac_cv_prog_MOC=$(HOST_DIR)/bin/moc \
|
|
ac_cv_prog_RCC=$(HOST_DIR)/bin/rcc \
|
|
ac_cv_prog_UIC=$(HOST_DIR)/bin/uic
|
|
# qt5 needs c++11 (since qt-5.7)
|
|
ifeq ($(BR2_PACKAGE_QT5_VERSION_LATEST),y)
|
|
LIBV4L_CONF_ENV += CXXFLAGS="$(TARGET_CXXFLAGS) -std=c++11"
|
|
endif
|
|
else
|
|
LIBV4L_CONF_OPTS += --disable-qv4l2
|
|
endif
|
|
else
|
|
LIBV4L_CONF_OPTS += --disable-v4l-utils
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SDL2_IMAGE),y)
|
|
LIBV4L_DEPENDENCIES += sdl2_image
|
|
endif
|
|
|
|
LIBV4L_CONF_ENV += LIBS="$(LIBV4L_LIBS)"
|
|
|
|
$(eval $(autotools-package))
|