mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 15:21:37 +03:00
Merge pull request #2148 from evverx/fix-enable-smack
build-sys: fix ./configure --enable-smack
This commit is contained in:
commit
afcaed0cad
11
configure.ac
11
configure.ac
@ -668,11 +668,14 @@ AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK
|
||||
esac],
|
||||
[have_smack=auto])
|
||||
|
||||
if test "x${have_smack}" = xauto; then
|
||||
if test "x${have_smack}" != xno; then
|
||||
AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
|
||||
M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
|
||||
have_smack=yes
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"])
|
||||
|
||||
have_smack_run_label=no
|
||||
AC_ARG_WITH(smack-run-label,
|
||||
AS_HELP_STRING([--with-smack-run-label=STRING],
|
||||
@ -690,12 +693,6 @@ AS_HELP_STRING([--with-smack-default-process-label=STRING],
|
||||
[AC_DEFINE_UNQUOTED(SMACK_DEFAULT_PROCESS_LABEL, ["$withval"], [Default SMACK label for executed processes])],
|
||||
[])
|
||||
|
||||
if test "x${have_smack}" = xyes ; then
|
||||
AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"])
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
AC_ARG_ENABLE([gcrypt],
|
||||
AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
|
||||
|
Loading…
Reference in New Issue
Block a user