Advertisement
ffilz

Untitled

Jun 8th, 2016
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if(USE_FSAL_RGW)
  2. find_library(LIBRGW rgw)
  3. check_library_exists(
  4. rgw
  5. ""
  6. ${RGW_PREFIX}
  7. LIBRGW
  8. )
  9. if(NOT LIBRGW)
  10. if(STRICT_PACKAGE)
  11. message(FATAL_ERROR "STRICT_PACKAGE : Cannot find RGW runtime. Disabling RGW fsal build")
  12. else(STRICT_PACKAGE)
  13. message(WARNING "Cannot find RGW runtime. Disabling RGW fsal build")
  14. set(USE_FSAL_RGW OFF)
  15. endif(STRICT_PACKAGE)
  16. endif(NOT LIBRGW)
  17. endif(USE_FSAL_RGW)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement