ff9aaa8287
Pngquant 2.10 introduced a bundled library libimagequant, Makefile passes $LIQCONFIGUREFLAGS to the configure script of libimagequant before building this library: https://github.com/pornel/pngquant/blob/master/Makefile#L27 This variable is filled by configure with the content of $LIQCONFIGURE https://github.com/pornel/pngquant/blob/master/configure#L553 We need to pass CC/CFLAGS/LDFLAGS as parameter to configure to fill $LIQCONFIGURE with correct values in order to use the target toolchain for building libimagequant: https://github.com/pornel/pngquant/blob/master/configure#L56 Fixes http://autobuild.buildroot.net/results/ab1/ab1193db9d76adc02be44d6f273e0986952df3e2/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# pngquant
|
|
#
|
|
################################################################################
|
|
|
|
PNGQUANT_VERSION = 2.10.1
|
|
PNGQUANT_SOURCE = pngquant-$(PNGQUANT_VERSION)-src.tar.gz
|
|
PNGQUANT_SITE = https://pngquant.org
|
|
PNGQUANT_LICENSE = GPL-3.0+
|
|
PNGQUANT_LICENSE_FILES = COPYRIGHT
|
|
HOST_PNGQUANT_DEPENDENCIES = host-libpng
|
|
PNGQUANT_DEPENDENCIES = libpng
|
|
|
|
ifeq ($(BR2_PACKAGE_LCMS2),y)
|
|
PNGQUANT_DEPENDENCIES += lcms2
|
|
endif
|
|
|
|
define PNGQUANT_CONFIGURE_CMDS
|
|
(cd $(@D) && \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
./configure --prefix=/usr \
|
|
$(if $(BR2_PACKAGE_LCMS2),--with-lcms2,--without-lcms2) \
|
|
$(if $(BR2_X86_CPU_HAS_SSE),--enable-sse,--disable-sse) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
)
|
|
endef
|
|
|
|
define PNGQUANT_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define PNGQUANT_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D) install
|
|
endef
|
|
|
|
define HOST_PNGQUANT_CONFIGURE_CMDS
|
|
(cd $(@D) && \
|
|
$(HOST_CONFIGURE_OPTS) \
|
|
CC=$(HOSTCC_NOCCACHE) \
|
|
./configure --prefix=$(HOST_DIR) \
|
|
--without-lcms2 \
|
|
)
|
|
endef
|
|
|
|
define HOST_PNGQUANT_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define HOST_PNGQUANT_INSTALL_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|
|
$(eval $(generic-package))
|