ab5b263e80
Fixes: CVE-2016-5384 - possible double free due to insufficiently validated cache files. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
779 B
Makefile
26 lines
779 B
Makefile
################################################################################
|
|
#
|
|
# fontconfig
|
|
#
|
|
################################################################################
|
|
|
|
FONTCONFIG_VERSION = 2.12.1
|
|
FONTCONFIG_SITE = http://fontconfig.org/release
|
|
FONTCONFIG_SOURCE = fontconfig-$(FONTCONFIG_VERSION).tar.bz2
|
|
FONTCONFIG_INSTALL_STAGING = YES
|
|
FONTCONFIG_DEPENDENCIES = freetype expat host-pkgconf
|
|
HOST_FONTCONFIG_DEPENDENCIES = host-freetype host-expat host-pkgconf
|
|
FONTCONFIG_LICENSE = fontconfig license
|
|
FONTCONFIG_LICENSE_FILES = COPYING
|
|
|
|
FONTCONFIG_CONF_OPTS = \
|
|
--with-arch=$(GNU_TARGET_NAME) \
|
|
--with-cache-dir=/var/cache/fontconfig \
|
|
--disable-docs
|
|
|
|
HOST_FONTCONFIG_CONF_OPTS = \
|
|
--disable-static
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|