a3bc78b13b
libjpeg should not be selected directly, as it is one implementation of the virtual jpeg package. Consequently, this commit moves minidlna and libsvg to use the jpeg virtual package instead. The build has been tested with both libjpeg and jpeg-turbo variants. Fixes: http://autobuild.buildroot.org/results/a12/a12760dea9e9d7ca62d14d0821539cc4b0c76835/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
616 B
Makefile
24 lines
616 B
Makefile
################################################################################
|
|
#
|
|
# libsvg
|
|
#
|
|
################################################################################
|
|
|
|
LIBSVG_VERSION = 0.1.4
|
|
LIBSVG_SITE = http://cairographics.org/snapshots
|
|
LIBSVG_DEPENDENCIES = host-pkgconf libpng jpeg
|
|
LIBSVG_INSTALL_STAGING = YES
|
|
LIBSVG_LICENSE = LGPLv2+
|
|
LIBSVG_LICENSE_FILES = COPYING
|
|
|
|
# libsvg needs at last a XML parser
|
|
ifeq ($(BR2_PACKAGE_EXPAT),y)
|
|
LIBSVG_CONF_OPTS += --with-expat
|
|
LIBSVG_DEPENDENCIES += expat
|
|
else
|
|
LIBSVG_CONF_OPTS += --with-libxml2
|
|
LIBSVG_DEPENDENCIES += libxml2
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|