7855885b95
In case cairo support is (auto-)detected cairo PNG support is required. Fixes ([1]): ../gst-libs/gst/video/.libs/libgstvalidatevideo-1.0.so: undefined reference to `cairo_surface_write_to_png' ../gst-libs/gst/video/.libs/libgstvalidatevideo-1.0.so: undefined reference to `cairo_image_surface_create_from_png' collect2: error: ld returned 1 exit status [1] http://autobuild.buildroot.net/results/c5e/c5eb6cb12dba559226c67f5d258cc151aa8a8d3a [Peter: reworded comment, dropped extra line] Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
628 B
Makefile
23 lines
628 B
Makefile
################################################################################
|
|
#
|
|
# gst1-validate
|
|
#
|
|
################################################################################
|
|
|
|
GST1_VALIDATE_VERSION = 1.6.0
|
|
GST1_VALIDATE_SOURCE = gst-validate-$(GST1_VALIDATE_VERSION).tar.xz
|
|
GST1_VALIDATE_SITE = http://gstreamer.freedesktop.org/src/gst-validate
|
|
GST1_VALIDATE_LICENSE = LGPLv2.1+
|
|
GST1_VALIDATE_LICENSE_FILES = COPYING
|
|
|
|
GST1_VALIDATE_CONF_OPTS = --disable-sphinx-doc
|
|
|
|
GST1_VALIDATE_DEPENDENCIES = \
|
|
gstreamer1 \
|
|
gst1-plugins-base \
|
|
host-python \
|
|
python \
|
|
$(if $(BR2_PACKAGE_CAIRO),cairo)
|
|
|
|
$(eval $(autotools-package))
|