From: Hauke Mehrtens Date: Tue, 21 Jul 2015 20:29:14 +0000 (+0200) Subject: soft-sensor-manager: libSSMCore.so: add missing depending library X-Git-Tag: 1.2.0+RC1~1362 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b52307797b91d7448a72874e4da7bed30c27a4f5;p=platform%2Fupstream%2Fiotivity.git soft-sensor-manager: libSSMCore.so: add missing depending library libSSMCore.so also depends on libdl.so, this patch adds these dependencies to the build. Without this the dynamic loader will not automatically load these libraries and it could result in unresolved dependencies at runtime. Change-Id: I76faff46fe96caef75fb6673c7e83d62b15b8489 Signed-off-by: Hauke Mehrtens Reviewed-on: https://gerrit.iotivity.org/gerrit/1796 Tested-by: jenkins-iotivity Reviewed-by: Uze Choi --- diff --git a/service/soft-sensor-manager/SConscript b/service/soft-sensor-manager/SConscript index dd01845..3bbd07a 100644 --- a/service/soft-sensor-manager/SConscript +++ b/service/soft-sensor-manager/SConscript @@ -160,7 +160,7 @@ static_libssmcore = ssmcore_env.StaticLibrary( ssmcore_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')]) ssmcore_env.AppendUnique(LIBS = ['oc', 'octbstack', 'oc_logger', - 'connectivity_abstraction', 'coap']) + 'connectivity_abstraction', 'coap', 'dl']) shared_libssmcore = ssmcore_env.SharedLibrary( target = 'SSMCore',