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.

29 lines
941 B

  1. From 51e26e002aa043435f94ac0f071066090d5c2de8 Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <hauke@hauke-m.de>
  3. Date: Mon, 22 Jun 2015 20:23:36 +0200
  4. Subject: [PATCH 5/5] do not chck for boost
  5. Boost is not needed for every package just for some.
  6. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
  7. ---
  8. service/third_party_libs.scons | 8 --------
  9. 1 file changed, 8 deletions(-)
  10. --- a/service/third_party_libs.scons
  11. +++ b/service/third_party_libs.scons
  12. @@ -49,14 +49,6 @@ if target_os in ['linux', 'tizen']:
  13. conf = Configure(lib_env)
  14. - if target_os not in ['tizen'] and not conf.CheckLib('boost_thread', language='C++'):
  15. - print 'Did not find boost_thread, exiting!'
  16. - Exit(1)
  17. -
  18. - if target_os not in ['tizen'] and not conf.CheckLib('boost_system', language='C++'):
  19. - print 'Did not find boost_system, exiting!'
  20. - Exit(1)
  21. -
  22. lib_env = conf.Finish()
  23. ######################################################################