You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.3 KiB

  1. From b52307797b91d7448a72874e4da7bed30c27a4f5 Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <hauke.mehrtens@lantiq.com>
  3. Date: Tue, 21 Jul 2015 22:29:14 +0200
  4. Subject: [PATCH] soft-sensor-manager: libSSMCore.so: add missing depending
  5. library
  6. libSSMCore.so also depends on libdl.so, this patch adds these
  7. dependencies to the build.
  8. Without this the dynamic loader will not automatically load these
  9. libraries and it could result in unresolved dependencies at runtime.
  10. Change-Id: I76faff46fe96caef75fb6673c7e83d62b15b8489
  11. Signed-off-by: Hauke Mehrtens <hauke.mehrtens@lantiq.com>
  12. Reviewed-on: https://gerrit.iotivity.org/gerrit/1796
  13. Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
  14. Reviewed-by: Uze Choi <uzchoi@samsung.com>
  15. ---
  16. service/soft-sensor-manager/SConscript | 2 +-
  17. 1 file changed, 1 insertion(+), 1 deletion(-)
  18. --- a/service/soft-sensor-manager/SConscript
  19. +++ b/service/soft-sensor-manager/SConscript
  20. @@ -157,7 +157,7 @@ static_libssmcore = ssmcore_env.StaticLi
  21. ssmcore_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
  22. ssmcore_env.AppendUnique(LIBS = ['oc', 'octbstack', 'oc_logger',
  23. - 'connectivity_abstraction', 'coap'])
  24. + 'connectivity_abstraction', 'coap', 'dl'])
  25. shared_libssmcore = ssmcore_env.SharedLibrary(
  26. target = 'SSMCore',