From: Jörg Krause Date: Thu, 15 Sep 2016 06:39:57 +0000 (+0200) Subject: package/upmpdcli: requires GCC 4.7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=abd4d29c8bb230a7d91123e8162ec7606f917a20;p=buildroot.git package/upmpdcli: requires GCC 4.7 upmpdcli now uses C++11 features, meaning the minimum usable GCC version is 4.7. Signed-off-by: Jörg Krause Signed-off-by: Thomas Petazzoni --- diff --git a/package/upmpdcli/Config.in b/package/upmpdcli/Config.in index e17330c8ed..b075d7a413 100644 --- a/package/upmpdcli/Config.in +++ b/package/upmpdcli/Config.in @@ -3,7 +3,7 @@ config BR2_PACKAGE_UPMPDCLI depends on BR2_USE_MMU # fork() depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS # libupnpp -> libupnp - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_6 + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11 select BR2_PACKAGE_LIBMPDCLIENT select BR2_PACKAGE_LIBUPNPP help @@ -13,6 +13,6 @@ config BR2_PACKAGE_UPMPDCLI http://www.lesbonscomptes.com/upmpdcli/ -comment "upmpdcli needs a toolchain w/ C++, threads, gcc >= 4.6" +comment "upmpdcli needs a toolchain w/ C++, threads, gcc >= 4.7" depends on BR2_USE_MMU - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6 + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7