3e5c0eae2b
cpe:2.3🅰️libpng:libpng is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Alibpng%3Alibpng Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
970 B
Makefile
33 lines
970 B
Makefile
################################################################################
|
|
#
|
|
# libpng
|
|
#
|
|
################################################################################
|
|
|
|
LIBPNG_VERSION = 1.6.37
|
|
LIBPNG_SERIES = 16
|
|
LIBPNG_SOURCE = libpng-$(LIBPNG_VERSION).tar.xz
|
|
LIBPNG_SITE = http://downloads.sourceforge.net/project/libpng/libpng$(LIBPNG_SERIES)/$(LIBPNG_VERSION)
|
|
LIBPNG_LICENSE = Libpng-2.0
|
|
LIBPNG_LICENSE_FILES = LICENSE
|
|
LIBPNG_CPE_ID_VENDOR = libpng
|
|
LIBPNG_INSTALL_STAGING = YES
|
|
LIBPNG_DEPENDENCIES = host-pkgconf zlib
|
|
HOST_LIBPNG_DEPENDENCIES = host-pkgconf host-zlib
|
|
LIBPNG_CONFIG_SCRIPTS = libpng$(LIBPNG_SERIES)-config libpng-config
|
|
|
|
ifeq ($(BR2_ARM_CPU_HAS_NEON)$(BR2_aarch64),y)
|
|
LIBPNG_CONF_OPTS += --enable-arm-neon
|
|
else
|
|
LIBPNG_CONF_OPTS += --disable-arm-neon
|
|
endif
|
|
|
|
ifeq ($(BR2_X86_CPU_HAS_SSE2),y)
|
|
LIBPNG_CONF_OPTS += --enable-intel-sse
|
|
else
|
|
LIBPNG_CONF_OPTS += --disable-intel-sse
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|