1. 14 Mar, 2017 6 commits
  2. 12 Mar, 2017 1 commit
  3. 11 Mar, 2017 4 commits
  4. 09 Mar, 2017 1 commit
  5. 06 Mar, 2017 2 commits
  6. 03 Mar, 2017 1 commit
  7. 02 Mar, 2017 1 commit
  8. 27 Feb, 2017 2 commits
  9. 26 Feb, 2017 2 commits
  10. 25 Feb, 2017 1 commit
  11. 23 Feb, 2017 4 commits
  12. 22 Feb, 2017 1 commit
  13. 19 Feb, 2017 2 commits
  14. 18 Feb, 2017 6 commits
  15. 17 Feb, 2017 1 commit
  16. 16 Feb, 2017 1 commit
  17. 15 Feb, 2017 2 commits
  18. 12 Feb, 2017 2 commits
    • Merge pull request #1430 from ffontaine/master · 1f14c2ea
      Christian Brauner authored
      Add HAVE_LIBCAP
    • Add HAVE_LIBCAP · e37dda71
      Fabrice Fontaine authored
      Currently it is impossible to build lxc with --disable-capabilities if
      the user has libcap-dev installed on his system as:
       - calls to cap_xxx functions are not protected by HAVE_LIBCAP defines.
       The whole file is only protected by HAVE_SYS_CAPABILITY_H.
       - AC_CHECK_LIB default action-if-found is overriden by [true] so
       HAVE_LIBCAP is never written to config.h
      
      This patch replaces all HAVE_SYS_CAPABILITY_H checks by HAVE_LIBCAP
      checks (fix #1361)
      Signed-off-by: 's avatarFabrice Fontaine <fontaine.fabrice@gmail.com>