aboutsummaryrefslogtreecommitdiff
path: root/net/iotivity
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2015-07-12 12:58:08 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2015-07-12 13:07:49 +0200
commitbc804531b857380e2fb0d089a1d6ee7fd37bc91e (patch)
tree97a7f6e0c3a45fd6174d7eba80e62a0418304064 /net/iotivity
parent097c3085aa46e20d90b6c98f1785bb85a3298364 (diff)
iotivity: deactivate it on uClibc
IoTivity makes use of std::sto* and this is deactivated because GCC things uClibc does not support C11, but it supports this part, not C11 completely. To make IoTivity work with uClibc a patch for this bug is needed: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58393 An option would be this patch: https://github.com/maximeh/buildroot/blob/master/package/gcc/4.9.1/850-libstdcxx-uclibc-c99.patch Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'net/iotivity')
-rw-r--r--net/iotivity/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/iotivity/Makefile b/net/iotivity/Makefile
index 880522cc5..7653d62ef 100644
--- a/net/iotivity/Makefile
+++ b/net/iotivity/Makefile
@@ -33,7 +33,7 @@ include $(INCLUDE_DIR)/scons.mk
define Package/iotivity
SECTION:=net
CATEGORY:=Network
- DEPENDS:= +libpthread +librt +libstdcpp +libuuid
+ DEPENDS:=@!USE_UCLIBC +libpthread +librt +libstdcpp +libuuid
TITLE:=IoTivity Library
URL:=https://www.iotivity.org
endef