From c1c0d7f1fd088471fff712f6979f6aeb779689ca Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Mon, 12 Jun 2017 16:24:48 +0200 Subject: [PATCH] build: Enable MULTIPLE_OWNER by default Bug: https://jira.iotivity.org/browse/IOT-2241 Change-Id: Id2e1bd03d887076204117c6f7ab60e435804d886 Signed-off-by: Philippe Coval Reviewed-on: https://gerrit.iotivity.org/gerrit/20699 Tested-by: jenkins-iotivity Reviewed-by: Habib Virji (cherry picked from commit 16e1df43f7f04a5c0950397f2282defb1bdb0c13) Reviewed-on: https://gerrit.iotivity.org/gerrit/20821 Reviewed-by: Alex Kelley Reviewed-by: Kevin Kane --- auto_build.py | 1 + build_common/SConscript | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/auto_build.py b/auto_build.py index c46db40..28da85e 100644 --- a/auto_build.py +++ b/auto_build.py @@ -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', diff --git a/build_common/SConscript b/build_common/SConscript index 3809b53..c575ad2 100755 --- a/build_common/SConscript +++ b/build_common/SConscript @@ -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)) -- 2.7.4