lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

002-do-not-chck-for-boost.patch (932B)


      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 
      6 Boost is not needed for every package just for some.
      7 
      8 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
      9 ---
     10  service/third_party_libs.scons | 8 --------
     11  1 file changed, 8 deletions(-)
     12 
     13 --- a/service/third_party_libs.scons
     14 +++ b/service/third_party_libs.scons
     15 @@ -49,14 +49,6 @@ if target_os in ['linux']:
     16  
     17  		conf = Configure(lib_env)
     18  
     19 -		if target_os not in ['tizen'] and not conf.CheckLib('boost_thread', language='C++'):
     20 -			print 'Did not find boost_thread, exiting!'
     21 -			Exit(1)
     22 -
     23 -		if target_os not in ['tizen'] and not conf.CheckLib('boost_system', language='C++'):
     24 -			print 'Did not find boost_system, exiting!'
     25 -			Exit(1)
     26 -
     27  		lib_env = conf.Finish()
     28  
     29  ######################################################################