Lines Matching refs:ng
1 # libcap-ng.m4 - Checks for the libcap-ng support
6 AC_ARG_WITH(libcap-ng,
7 [ --with-libcap-ng=[auto/yes/no] Add Libcap-ng support [default=auto]],,
10 # Check for Libcap-ng API
12 # libcap-ng detection
18 AC_CHECK_HEADER(cap-ng.h, capng_headers=yes, capng_headers=no)
20 # See if we have libcap-ng library
21 AC_CHECK_LIB(cap-ng, capng_clear,
22 CAPNG_LDADD=-lcap-ng,)
26 AC_MSG_ERROR(libcap-ng support was requested and the library was not found)
29 AC_MSG_ERROR(libcap-ng libraries found but headers are missing)
33 AC_MSG_CHECKING(whether to use libcap-ng)
35 AC_DEFINE(HAVE_LIBCAP_NG,1,[libcap-ng support])