build: Enable MULTIPLE_OWNER by default
authorPhilippe Coval <philippe.coval@osg.samsung.com>
Mon, 12 Jun 2017 14:24:48 +0000 (16:24 +0200)
committerPhil Coval <philippe.coval@osg.samsung.com>
Tue, 20 Jun 2017 22:05:26 +0000 (22:05 +0000)
Bug: https://jira.iotivity.org/browse/IOT-2241
Change-Id: Id2e1bd03d887076204117c6f7ab60e435804d886
Signed-off-by: Philippe Coval <philippe.coval@osg.samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/20699
Tested-by: jenkins-iotivity <jenkins@iotivity.org>
Reviewed-by: Habib Virji <habib.virji@samsung.com>
(cherry picked from commit 16e1df43f7f04a5c0950397f2282defb1bdb0c13)
Reviewed-on: https://gerrit.iotivity.org/gerrit/20821
Reviewed-by: Alex Kelley <alexke@microsoft.com>
Reviewed-by: Kevin Kane <kkane@microsoft.com>
auto_build.py
build_common/SConscript

index c46db40..28da85e 100644 (file)
@@ -356,6 +356,7 @@ def build_arduino(flag, extra_option_str):
                         'TARGET_OS':'arduino',
                         'UPLOAD':'false',
                         'BOARD':'mega',
+                        'MULTIPLE_OWNER':0,
                         'TARGET_ARCH':'avr',
                         'TARGET_TRANSPORT':'IP',
                         'SHIELD':'ETH',
index 3809b53..c575ad2 100755 (executable)
@@ -117,7 +117,7 @@ if target_os in targets_without_dtls_support:
     help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
 else:
     help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '1', allowed_values=('0', '1')))
-help_vars.Add(EnumVariable('MULTIPLE_OWNER', 'Enable multiple owner', '0', allowed_values=('0', '1')))
+help_vars.Add(EnumVariable('MULTIPLE_OWNER', 'Enable multiple owner', '1', allowed_values=('0', '1')))
 help_vars.Add(EnumVariable('EXC_PROV_SUPPORT', 'Except OCPMAPI library(libocpmapi.so)', '0', allowed_values=('0', '1')))
 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))