e6a67cc410
License[1] was bumped to v2, for details see http://lists.opensource.org/pipermail/license-review_lists.opensource.org/2018-November/003791.html [1] http://www.libpng.org/pub/png/src/libpng-LICENSE.txt Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Peter: use Libpng-2.0 as license tag] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
926 B
Makefile
32 lines
926 B
Makefile
################################################################################
|
|
#
|
|
# libpng
|
|
#
|
|
################################################################################
|
|
|
|
LIBPNG_VERSION = 1.6.36
|
|
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_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),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))
|