summaryrefslogtreecommitdiffstats
path: root/package/jsoncpp/Config.in
diff options
context:
space:
mode:
authorJörg Krause <joerg.krause@embedded.rocks>2015-08-11 09:46:46 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-08-19 11:05:49 +0200
commitf9280fd9e9f9a4bb108327362559cccac6186b3b (patch)
tree4a36adb1bdcc865fb4f33dc6c66f45a4e52bb67f /package/jsoncpp/Config.in
parentc994d5638310e0a6e5110bd11e51ab0d56188cad (diff)
downloadbuildroot-f9280fd9e9f9a4bb108327362559cccac6186b3b.tar.gz
buildroot-f9280fd9e9f9a4bb108327362559cccac6186b3b.zip
package/jsoncpp: bump to version 1.6.5
Remove patch 0001-Revert-Use-std-namespace-for-snprintf.patch: This patch was initially intented to remove upstream commit 1c58876185d2a4ed87dac4a54b82f607e74f55fd to disable std::snprintf() for all compilers. However, the patch actually reverts upstream commit 240ddb6a1b7aae7c6528e328995812ee695a73af which only uses std namespace if the compiler defines __cplusplus >= 201103L, thus is a recent C++11 compiler. Furthermore, upstream commit fac87108a49fb1b2640eff5d8e4cc7a12723a510 adds the `-std=c++11` compiler flag to gcc, so jsoncpp now requires a C++11 compiler either way. With jsoncpp requiring a recent C++11 compiler we need at least gcc 4.7. Backport patch from upstream [1] to remove `-Werror` from the compiler flags to allow building with CS ARM toolchains. [1] https://github.com/open-source-parsers/jsoncpp/commit/d7b84f69c5e92178e110552cce27f900744e1779 Cc: Baruch Siach <baruch@tkos.co.il> Cc: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Reviewed-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/jsoncpp/Config.in')
-rw-r--r--package/jsoncpp/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/jsoncpp/Config.in b/package/jsoncpp/Config.in
index 2c96f13266..83118c400c 100644
--- a/package/jsoncpp/Config.in
+++ b/package/jsoncpp/Config.in
@@ -1,4 +1,5 @@
config BR2_PACKAGE_JSONCPP
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
depends on BR2_INSTALL_LIBSTDCPP
bool "jsoncpp"
help
@@ -10,5 +11,5 @@ config BR2_PACKAGE_JSONCPP
https://github.com/open-source-parsers/jsoncpp
-comment "jsoncpp needs a toolchain w/ C++"
- depends on !BR2_INSTALL_LIBSTDCPP
+comment "jsoncpp needs a toolchain w/ C++, gcc >= 4.7"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
OpenPOWER on IntegriCloud