Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
Some older toolchains do not recognize c11 as a valid standard.
Since the code actually builds well with c99, use that instead.
The only two non-standard features used are // comments
and for(int i ...) declarations in C.
Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
--- a/SConstruct
+++ b/SConstruct
@@ -9,9 +9,8 @@ mydir = os.getcwd()
#Set default C++ building flags for both libraries and executables
default_env = Environment(ENV = os.environ)
default_env.Append(CPPPATH = [mydir + '/include'])
-default_env.Append(CCFLAGS = ' -Wall -pedantic')
-default_env.Append(CFLAGS = ' -std=c11')
-default_env.Append(CXXFLAGS = ' -std=c++11')
+default_env.Append(CFLAGS = ' -Wall')
+default_env.Append(CFLAGS = ' -std=c99')
#default_env.Append(CCFLAGS = ' -O2 -fomit-frame-pointer')
default_env.Append(CCFLAGS = ' -O0 -g')

View File

@@ -0,0 +1,15 @@
config BR2_PACKAGE_BENEJSON
bool "benejson"
depends on BR2_INSTALL_LIBSTDCPP
help
benejson is a buffering SAX-style JSON parser library.
The library package contains 3 major components:
- benejson.js: SAX-style parser written in Javascript
- PullParser: A C++ class for JSON pull parsing
- Core: The parsing core with minimal dependencies
https://codehero.github.io/benejson/
comment "benejson needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -0,0 +1,2 @@
# Localy computed
sha256 2ce5f3c2323500bdf651e7fcaecbd1011997141e6067567b8d2caa4cf7182f4a benejson-0.9.7.tar.gz

View File

@@ -0,0 +1,60 @@
################################################################################
#
# benejson
#
################################################################################
BENEJSON_VERSION = 0.9.7
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
BENEJSON_SCONS_TARGETS = include
ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
BENEJSON_SCONS_TARGETS += lib/libbenejson.a
define BENEJSON_INSTALL_STATIC_LIB
$(INSTALL) -D -m 0644 $(@D)/lib/libbenejson.a \
$(1)/usr/lib/libbenejson.a
endef
endif # Static enabled
ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
BENEJSON_SCONS_TARGETS += lib/libbenejson.so
define BENEJSON_INSTALL_SHARED_LIB
$(INSTALL) -D -m 0644 $(@D)/lib/libbenejson.so \
$(1)/usr/lib/libbenejson.so
endef
endif # Shared enabled
define BENEJSON_BUILD_CMDS
(cd $(@D); \
$(TARGET_CONFIGURE_OPTS) CROSS=$(TARGET_CROSS) \
$(SCONS) $(BENEJSON_SCONS_TARGETS))
endef
define BENEJSON_INSTALL_STAGING_CMDS
$(INSTALL) -D -m 0644 $(@D)/include/benejson/benejson.h \
$(STAGING_DIR)/usr/include/benejson/benejson.h; \
$(INSTALL) -D -m 0644 $(@D)/include/benejson/pull.hh \
$(STAGING_DIR)/usr/include/benejson/pull.hh
$(call BENEJSON_INSTALL_STATIC_LIB,$(STAGING_DIR))
$(call BENEJSON_INSTALL_SHARED_LIB,$(STAGING_DIR))
endef
define BENEJSON_INSTALL_TARGET_CMDS
$(call BENEJSON_INSTALL_SHARED_LIB,$(TARGET_DIR))
endef
$(eval $(generic-package))