Include a new tinycbor file to iotivity build
authorOtavio Pontes <otavio.pontes@intel.com>
Mon, 11 Jul 2016 13:23:33 +0000 (10:23 -0300)
committerTrevor Bramwell <tbramwell@linuxfoundation.org>
Thu, 4 Aug 2016 20:15:20 +0000 (20:15 +0000)
In tinycbor a function was moved from cborparser.c to
cborparser_dup_string.c file. As we need this function in IoTivity we
need to include cborparser_dup_string.c in tinycbor SConscript.

Change-Id: Ic0b7598b525c61005bc07b3efcef0270f20bfc28
Signed-off-by: Otavio Pontes <otavio.pontes@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/9285
Reviewed-by: Phil Coval <philippe.coval@osg.samsung.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Madan Lanka <lanka.madan@samsung.com>
Tested-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Reviewed-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
extlibs/tinycbor/SConscript

index 8c6a497..cc989dc 100644 (file)
@@ -37,6 +37,7 @@ if not os.path.exists(cborDir):
 
 cbor_src = [
     os.path.join(cborDir,'src/cborparser.c'),
+    os.path.join(cborDir,'src/cborparser_dup_string.c'),
     os.path.join(cborDir,'src/cborencoder.c'),
     os.path.join(cborDir,'src/cborerrorstrings.c'),
     ]