mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
config BR2_PACKAGE_HOST_IMAGEMAGICK
|
||||
bool "host imagemagick"
|
||||
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS # host-librsvg
|
||||
help
|
||||
ImageMagick(R) is a software suite to create, edit, and
|
||||
compose bitmap images. It can read, convert and write images
|
||||
@@ -16,7 +17,6 @@ if BR2_PACKAGE_HOST_IMAGEMAGICK
|
||||
|
||||
config BR2_PACKAGE_HOST_IMAGEMAGICK_SVG
|
||||
bool "SVG support"
|
||||
depends on BR2_HOST_GCC_AT_LEAST_4_8 # host-librsvg -> host-pango -> host-harfbuzz
|
||||
help
|
||||
Say 'y' here is you need ImageMagick tools (like convert)
|
||||
to support SVG.
|
||||
@@ -24,7 +24,4 @@ config BR2_PACKAGE_HOST_IMAGEMAGICK_SVG
|
||||
This is not enabled by default, as it brings quite a few
|
||||
extra dependencies, and thus extra build time.
|
||||
|
||||
comment "SVG support needs host gcc >= 4.8"
|
||||
depends on !BR2_HOST_GCC_AT_LEAST_4_8
|
||||
|
||||
endif
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 238ee17196fcb80bb58485910aaefc12d48f99e4043c2a28f06ff9588161c4e3 7.0.8-59.tar.gz
|
||||
sha256 5b47db932754743460eba7a226aea85b63e3408d3c7affb4d0117f70c9594ded LICENSE
|
||||
sha256 9f2b8b131222354b196c640fca4e53eb0bbf62246621b9d467f223366272d7a7 imagemagick-7.0.10-28.tar.gz
|
||||
sha256 e2d364de83dd9e7c866bd99ee7dac2fe92071fb70e9b187293353fb285cf09ac LICENSE
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMAGEMAGICK_VERSION = 7.0.8-59
|
||||
IMAGEMAGICK_SOURCE = $(IMAGEMAGICK_VERSION).tar.gz
|
||||
IMAGEMAGICK_SITE = https://github.com/ImageMagick/ImageMagick/archive
|
||||
IMAGEMAGICK_VERSION = 7.0.10-28
|
||||
IMAGEMAGICK_SITE = $(call github,ImageMagick,ImageMagick,$(IMAGEMAGICK_VERSION))
|
||||
IMAGEMAGICK_LICENSE = Apache-2.0
|
||||
IMAGEMAGICK_LICENSE_FILES = LICENSE
|
||||
|
||||
@@ -18,10 +17,13 @@ ifeq ($(BR2_INSTALL_LIBSTDCPP)$(BR2_USE_WCHAR),yy)
|
||||
IMAGEMAGICK_CONFIG_SCRIPTS += Magick++-config
|
||||
endif
|
||||
|
||||
IMAGEMAGICK_CONF_ENV = ac_cv_sys_file_offset_bits=64
|
||||
IMAGEMAGICK_CONF_ENV = \
|
||||
ac_cv_sys_file_offset_bits=64 \
|
||||
ax_cv_check_cl_libcl=no
|
||||
|
||||
IMAGEMAGICK_CONF_OPTS = \
|
||||
--program-transform-name='s,,,' \
|
||||
--disable-opencl \
|
||||
--disable-openmp \
|
||||
--without-djvu \
|
||||
--without-dps \
|
||||
@@ -152,6 +154,7 @@ IMAGEMAGICK_CONF_OPTS += --without-bzlib
|
||||
endif
|
||||
|
||||
HOST_IMAGEMAGICK_CONF_OPTS = \
|
||||
--disable-opencl \
|
||||
--disable-openmp \
|
||||
--without-djvu \
|
||||
--without-dps \
|
||||
@@ -177,7 +180,9 @@ HOST_IMAGEMAGICK_CONF_OPTS = \
|
||||
--with-zlib
|
||||
|
||||
# uses clock_gettime, which was provided by librt in glibc < 2.17
|
||||
HOST_IMAGEMAGICK_CONF_ENV = LIBS="-lrt"
|
||||
HOST_IMAGEMAGICK_CONF_ENV = \
|
||||
LIBS="-lrt" \
|
||||
ax_cv_check_cl_libcl=no
|
||||
|
||||
HOST_IMAGEMAGICK_DEPENDENCIES = \
|
||||
host-libjpeg \
|
||||
|
||||
Reference in New Issue
Block a user