diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-09-01 09:59:08 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-09-01 09:59:08 +0200 |
commit | cfc70a48027b1b56231df62a30a7da888f33e3ce (patch) | |
tree | cb2e856d51f1a79822a2b21d8c2cbaea55ae170d /package/jsoncpp/Config.in | |
parent | 70874e321dbd50203187c41214cb888507cd6df1 (diff) | |
parent | aa016797444017d4379a139e39697e38ed2e2357 (diff) | |
download | buildroot-cfc70a48027b1b56231df62a30a7da888f33e3ce.tar.gz buildroot-cfc70a48027b1b56231df62a30a7da888f33e3ce.zip |
Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/jsoncpp/Config.in')
-rw-r--r-- | package/jsoncpp/Config.in | 5 |
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 |