3c1174ddd0
python-numpy is an optional dependency since
545c1a1d3a
This dependency will raise the following build failure if python-numpy
is found on the host:
aarch64_be-linux-gnu-g++: ERROR: unsafe header/library path used in cross-compilation: '-I/usr/lib/python3/dist-packages/numpy/core/include'
because mjpg-streamer uses the python executable to retrieve the include
directory:
-- Found PythonLibs: /home/peko/autobuild/instance-0/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot/usr/lib/libpython3.8.so (found version "3.8.5")
-- Found PythonInterp: /usr/bin/python3.5 (found version "3.5.3")
-- Found NUMPY: /usr/lib/python3/dist-packages/numpy/core/include
So disable python filter as well as cpp example while at it
Fixes:
- http://autobuild.buildroot.org/results/e6795fa8ed5d8514b3e10ea1135afb31eab22b7e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# mjpg-streamer
|
|
#
|
|
################################################################################
|
|
|
|
MJPG_STREAMER_VERSION = 5a6e0a2db163e6ae9461552b59079870d0959340
|
|
MJPG_STREAMER_SITE = $(call github,jacksonliam,mjpg-streamer,$(MJPG_STREAMER_VERSION))
|
|
MJPG_STREAMER_SUBDIR = mjpg-streamer-experimental
|
|
MJPG_STREAMER_LICENSE = GPL-2.0+
|
|
MJPG_STREAMER_LICENSE_FILES = $(MJPG_STREAMER_SUBDIR)/LICENSE
|
|
MJPG_STREAMER_DEPENDENCIES = jpeg
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGPHOTO2),y)
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_INPUT_PTP2=ON
|
|
MJPG_STREAMER_DEPENDENCIES += host-pkgconf libgphoto2
|
|
else
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_INPUT_PTP2=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBV4L),y)
|
|
MJPG_STREAMER_DEPENDENCIES += libv4l
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENCV3_LIB_HIGHGUI)$(BR2_PACKAGE_OPENCV3_LIB_IMGPROC)$(BR2_PACKAGE_OPENCV3_LIB_VIDEOIO),yyy)
|
|
MJPG_STREAMER_CONF_OPTS += \
|
|
-DPLUGIN_INPUT_OPENCV=ON \
|
|
-DPLUGIN_CVFILTER_CPP=OFF \
|
|
-DPLUGIN_CVFILTER_PY=OFF
|
|
MJPG_STREAMER_DEPENDENCIES += host-pkgconf opencv3
|
|
else
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_INPUT_OPENCV=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PROTOBUF_C)$(BR2_PACKAGE_ZEROMQ),yy)
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_OUTPUT_ZMQSERVER=ON
|
|
MJPG_STREAMER_DEPENDENCIES += host-pkgconf protobuf-c zeromq
|
|
else
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_OUTPUT_ZMQSERVER=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SDL),y)
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_OUTPUT_VIEWER=ON
|
|
MJPG_STREAMER_DEPENDENCIES += host-pkgconf sdl
|
|
else
|
|
MJPG_STREAMER_CONF_OPTS += -DPLUGIN_OUTPUT_VIEWER=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|