benejson: fix for non-wchar toolchains
wchar needs to be disabled in order for it to build on !wchar. Fixes: http://autobuild.buildroot.net/results/71f/71f19d5056b56d40463b9fef7fa859e0025c4991/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
953be8f39d
commit
de5082fa21
@ -9,9 +9,17 @@ BENEJSON_SITE = $(call github,codehero,benejson,$(BENEJSON_VERSION))
|
||||
BENEJSON_LICENSE = MIT
|
||||
BENEJSON_LICENSE_FILES = LICENSE
|
||||
BENEJSON_INSTALL_STAGING = YES
|
||||
|
||||
BENEJSON_DEPENDENCIES = host-scons
|
||||
|
||||
# wchar support needs to be manually disabled
|
||||
ifeq ($(BR2_USE_WCHAR),)
|
||||
define BENEJSON_DISABLE_WCHAR
|
||||
$(SED) 's,^#define BNJ_WCHAR_SUPPORT,#undef BNJ_WCHAR_SUPPORT,' \
|
||||
$(@D)/benejson/benejson.h
|
||||
endef
|
||||
BENEJSON_POST_PATCH_HOOKS += BENEJSON_DISABLE_WCHAR
|
||||
endif
|
||||
|
||||
define BENEJSON_BUILD_CMDS
|
||||
(cd $(@D); \
|
||||
$(TARGET_CONFIGURE_OPTS) CROSS=$(TARGET_CROSS) \
|
||||
|
Loading…
Reference in New Issue
Block a user