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
1.3 KiB

  1. From e767f892e7736008b60f85d2c2690d660661814b Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <hauke.mehrtens@lantiq.com>
  3. Date: Thu, 13 Aug 2015 15:03:11 +0200
  4. Subject: [PATCH] resource-encapsulation: fix build without curl
  5. The hue plugin needs curl and it should only be build when libcurl is available.
  6. Without this patch, the build fails without curl installed, this patch fixes the problem and makes the build worm without curl and without the hue stuff.
  7. Without this patch I am getting this error message:
  8. scons: ***
  9. File "/service/third_party_libs.scons", line 50, in ?
  10. Change-Id: I5b4da555ff84b9b605cc6c119990d60ff670bd0d
  11. Signed-off-by: Hauke Mehrtens <hauke.mehrtens@lantiq.com>
  12. ---
  13. .../src/resourceContainer/SConscript | 2 +-
  14. 1 file changed, 1 insertion(+), 1 deletion(-)
  15. --- a/service/resource-encapsulation/src/resourceContainer/SConscript
  16. +++ b/service/resource-encapsulation/src/resourceContainer/SConscript
  17. @@ -177,7 +177,7 @@ else:
  18. HueBundle = hue_resource_bundle_env.SharedLibrary('HueBundle', hue_resource_bundle_src)
  19. hue_resource_bundle_env.InstallTarget(HueBundle, 'libHueBundle')
  20. - lib_env = conf2.Finish()
  21. +lib_env = conf2.Finish()
  22. ######################################################################
  23. # build resource container unit tests