040-linux-Use-system-sqlite3.patch (980B)
1 From 08b403572985a70fe5d652378e1cfa2b72ac6a3d Mon Sep 17 00:00:00 2001 2 From: Philippe Coval <philippe.coval@osg.samsung.com> 3 Date: Fri, 9 Dec 2016 02:12:04 +0100 4 Subject: [PATCH] linux: Use system sqlite3 5 6 Problem was discovered on yocto 7 8 Change-Id: I5274bed9e4b7ddcdc1b17a265a1886cd78cb631f 9 Signed-off-by: Philippe Coval <philippe.coval@osg.samsung.com> 10 Reviewed-on: https://gerrit.iotivity.org/gerrit/15305 11 Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org> 12 Reviewed-by: Ziran Sun <ziran.sun@samsung.com> 13 --- 14 resource/csdk/SConscript | 2 +- 15 1 file changed, 1 insertion(+), 1 deletion(-) 16 17 --- a/resource/csdk/SConscript 18 +++ b/resource/csdk/SConscript 19 @@ -191,7 +191,7 @@ if with_tcp == True: 20 21 if 'SERVER' in rd_mode: 22 liboctbstack_src.append(OCTBSTACK_SRC + 'oicresourcedirectory.c') 23 - if target_os not in ['tizen']: 24 + if target_os not in ['linux', 'tizen']: 25 liboctbstack_src.append('#extlibs/sqlite3/sqlite3.c') 26 27 if target_os in ['linux']: