mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-07-01 21:31:14 +02:00
evmctl - IMA/EVM control tool
evmctl provides signing support for IMA/EVM. Functionality includes signing of file content (IMA), file metadata (EVM), importing public keys into kernel keyring. Signed-off-by: Dmitry Kasatkin <dmitry.kasatkin@intel.com>
This commit is contained in:
14
acinclude.m4
Normal file
14
acinclude.m4
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
AC_DEFUN([PKG_ARG_ENABLE],
|
||||
[
|
||||
AC_MSG_CHECKING(whether to enable $1)
|
||||
AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [enable $1 (default is $2)]),
|
||||
[pkg_cv_enable_$1=$enableval],
|
||||
[AC_CACHE_VAL([pkg_cv_enable_$1], [pkg_cv_enable_$1=$2])])
|
||||
if test $pkg_cv_enable_$1 = yes; then
|
||||
AC_DEFINE([$3],, [$4])
|
||||
fi
|
||||
AC_MSG_RESULT([$pkg_cv_enable_$1])
|
||||
AM_CONDITIONAL($3, test $pkg_cv_enable_$1 = yes)
|
||||
])
|
||||
|
Reference in New Issue
Block a user