4815bbc7b0
CVE-2019-13504 is misclassified (by our CVE tracker) as affecting version 0.27.2, while in fact both commits that fixed this issue are already in this version: bd0afe039043 and 54f0bebca032. (From: https://security-tracker.debian.org/tracker/CVE-2019-13504) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# exiv2
|
|
#
|
|
################################################################################
|
|
|
|
EXIV2_VERSION = 0.27.2
|
|
EXIV2_SITE = $(call github,Exiv2,exiv2,v$(EXIV2_VERSION))
|
|
EXIV2_INSTALL_STAGING = YES
|
|
EXIV2_LICENSE = GPL-2.0+, BSD-3-Clause
|
|
EXIV2_LICENSE_FILES = COPYING COPYING-CMAKE-SCRIPTS
|
|
|
|
# CVE-2019-13504 is misclassified (by our CVE tracker) as affecting version
|
|
# 0.27.2, while in fact both commits that fixed this issue are already in this
|
|
# version.
|
|
EXIV2_IGNORE_CVES += CVE-2019-13504
|
|
|
|
# 0001-crwimage-Check-offset-and-size-against-total-size.patch
|
|
EXIV2_IGNORE_CVES += CVE-2019-17402
|
|
|
|
# 0002-fix_1011_jp2_readmetadata_loop.patch
|
|
EXIV2_IGNORE_CVES += CVE-2019-20421
|
|
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_BUILD_SAMPLES=OFF
|
|
|
|
# The following CMake variable disables a TRY_RUN call in the -pthread
|
|
# test which is not allowed when cross-compiling.
|
|
EXIV2_CONF_OPTS += -DTHREADS_PTHREAD_ARG=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_EXIV2_LENSDATA),y)
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_LENSDATA=ON
|
|
else
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_LENSDATA=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_EXIV2_PNG),y)
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_PNG=ON
|
|
EXIV2_DEPENDENCIES += zlib
|
|
else
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_PNG=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_EXIV2_XMP),y)
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_XMP=ON -DEXIV2_ENABLE_LIBXMP=ON
|
|
EXIV2_DEPENDENCIES += expat
|
|
else
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_XMP=OFF -DEXIV2_ENABLE_LIBXMP=OFF
|
|
endif
|
|
|
|
EXIV2_DEPENDENCIES += $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
ifeq ($(BR2_SYSTEM_ENABLE_NLS),y)
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_NLS=ON
|
|
else
|
|
EXIV2_CONF_OPTS += -DEXIV2_ENABLE_NLS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|