This does the following changes: * update to version 1.2.1 * add iotivity-resource-directory-lib, this is needed by most applications now * do not activate security support by default, this caused some problems and needs some more settings to setup. * use sqlite version from normal package feed instead of using an own version * build against LEDE version of mbedtls * update example security configuration * remove some patches that went upstream * add some new patches fixing problems observed in my environment, most of them are on their way upstream. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From df8360447163762c63994dcb07f9e69a5a365a1c Mon Sep 17 00:00:00 2001
|
|
From: Hauke Mehrtens <hauke@hauke-m.de>
|
|
Date: Sun, 8 Jan 2017 22:01:57 +0100
|
|
Subject: [PATCH 8/8] zigbee_wrapper: do not check for floating point
|
|
|
|
This makes the compile fail for soft float builds. In such builds the
|
|
double is still 64 bit long.
|
|
|
|
Change-Id: I45d3f19b49f5d23d2b65307738a362765c5ea1c2
|
|
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
|
|
---
|
|
plugins/zigbee_wrapper/src/zigbee_wrapper.c | 8 --------
|
|
1 file changed, 8 deletions(-)
|
|
|
|
--- a/plugins/zigbee_wrapper/src/zigbee_wrapper.c
|
|
+++ b/plugins/zigbee_wrapper/src/zigbee_wrapper.c
|
|
@@ -37,14 +37,6 @@
|
|
#include <math.h>
|
|
#include <errno.h>
|
|
|
|
-// The following #define must be here under "math.h".
|
|
-// This ifdef ensures that "__STDC_IEC_559__" is defined. If it is defined,
|
|
-// then we are guaranteed that the 'double' type is 64-bit. Otherwise, the
|
|
-// compilation of this file should fail because we are no longer guaranteed.
|
|
-#ifndef __STDC_IEC_559__
|
|
-#error "Requires IEEE 754 floating point!"
|
|
-#endif
|
|
-
|
|
#include "zigbee_wrapper.h"
|
|
#include "telegesis_wrapper.h"
|
|
#include "pluginlist.h"
|