taskd: needs C++
authorArnout Vandecappelle <arnout@mind.be>
Sun, 13 Mar 2016 23:00:06 +0000 (00:00 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 14 Mar 2016 22:43:44 +0000 (23:43 +0100)
It's all C++ code... C++11 even, but it turns out to compile fine even
with gcc-4.5 (Arago toolchain).

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/taskd/Config.in

index 28361612e405feee5a4d87f2774d69d3363db531..7a9a136034a880fde153289450d845af24412b40 100644 (file)
@@ -2,6 +2,7 @@ config BR2_PACKAGE_TASKD
        bool "taskd"
        depends on BR2_USE_WCHAR # gnutls, util-linux
        depends on BR2_USE_MMU # fork()
+       depends on BR2_INSTALL_LIBSTDCPP
        select BR2_PACKAGE_GNUTLS
        select BR2_PACKAGE_UTIL_LINUX
        select BR2_PACKAGE_UTIL_LINUX_LIBUUID
@@ -10,6 +11,6 @@ config BR2_PACKAGE_TASKD
 
          http://taskwarrior.org/
 
-comment "taskd needs a toolchain w/ wchar"
+comment "taskd needs a toolchain w/ C++, wchar"
        depends on BR2_USE_MMU
-       depends on !BR2_USE_WCHAR
+       depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP