aboutsummaryrefslogtreecommitdiff
path: root/libs/nlohmannjson
Commit message (Collapse)AuthorAge
* Nlohmannjson: Update to version 3.11.2Volker Christian2023-07-10
| | | | | | | | | | | | | | Compile tested: OpenWRT-23.05-rc2, arm_cortex-a7_neon-vfpv4, mips_24kc Run tested: arm_cortex-a7_neon-vfpv4 (Linksys MR8300), mips_24kc (tplink_archer-a7), OpenWrt 23.05-rc2) * Update package nlohmannjson to version 3.11.2. * Version 3.11.2 is source compatible with 3.10.2 so no package should fail to compile * From version 3.11.2 on forward template declarations are collected in the file json_fwd.hpp. The json.hpp still contains all template definitions. Because in most compilation units of a software package only the file json_fwd.hpp needs to be included, the compilation process is accelerated a lot. Signed-off-by: Volker Christian <me@vchrist.at>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* treewide: remove PKG_INSTALL for meson projectsRosen Penev2022-06-15
| | | | | | It doesn't seem to be used by meson. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* nlohmannjson: update to 3.10.2Rosen Penev2021-09-26
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: compile with tools/mesonRosen Penev2021-09-17
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* nlohmannjson: update to 3.9.1Rosen Penev2020-09-25
| | | | | | Rename PKG_SOURCE. No point in matching with BUILD_DIR. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* nlohmannjson: build with mesonRosen Penev2020-08-02
| | | | | | | | | Just blindly copying the include files is not quite correct. The build system merges all of them into one file. A pkgconfig file also gets generated. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* nlohmannjson: update to 3.8.0Rosen Penev2020-07-15
| | | | | | | | Add BUILDONLY since this is only used for the headers. Rearranged variables for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* nlohmannjson: initial commitLeonid Esman2019-12-14
JSON for Modern C++ library. Design goals: intuitive syntax, trivial integration, serious testing. https://nlohmann.github.io/json/ IPFS C++ HTTP API client library depends on this library. Signed-off-by: Leonid Esman <leonid.esman@gmail.com>