edcf8b6d5f
Fixes: - Fix potential core dumped for strrchr - Fix null pointer crash in cJSON_CreateXxArray - Fix several null pointer problems on allocation failure - Fix a possible dereference of null pointer https://github.com/DaveGamble/cJSON/releases/tag/v1.7.15 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
29 lines
927 B
Makefile
29 lines
927 B
Makefile
################################################################################
|
|
#
|
|
# cjson
|
|
#
|
|
################################################################################
|
|
|
|
CJSON_VERSION = 1.7.15
|
|
CJSON_SITE = $(call github,DaveGamble,cjson,v$(CJSON_VERSION))
|
|
CJSON_INSTALL_STAGING = YES
|
|
CJSON_LICENSE = MIT
|
|
CJSON_LICENSE_FILES = LICENSE
|
|
CJSON_CPE_ID_VENDOR = cjson_project
|
|
# Set ENABLE_CUSTOM_COMPILER_FLAGS to OFF in particular to disable
|
|
# -fstack-protector-strong which depends on BR2_TOOLCHAIN_HAS_SSP
|
|
CJSON_CONF_OPTS += \
|
|
-DENABLE_CJSON_TEST=OFF \
|
|
-DENABLE_CUSTOM_COMPILER_FLAGS=OFF
|
|
|
|
# If BUILD_SHARED_AND_STATIC_LIBS is set to OFF, cjson uses the
|
|
# standard BUILD_SHARED_LIBS option which is passed by the
|
|
# cmake-package infrastructure.
|
|
ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
|
CJSON_CONF_OPTS += -DBUILD_SHARED_AND_STATIC_LIBS=ON
|
|
else
|
|
CJSON_CONF_OPTS += -DBUILD_SHARED_AND_STATIC_LIBS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|