mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
build-sys: require certain version of libselinux
./.libs/libsystemd-core.a(libsystemd_core_la-selinux-access.o): In function "selinux_access_check": src/core/selinux-access.c:487: undefined reference to "selinux_check_access"
This commit is contained in:
parent
040f18ea8a
commit
3f8cc098d2
@ -203,7 +203,7 @@ fi
|
|||||||
have_selinux=no
|
have_selinux=no
|
||||||
AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
|
AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
|
||||||
if test "x$enable_selinux" != "xno"; then
|
if test "x$enable_selinux" != "xno"; then
|
||||||
PKG_CHECK_MODULES(SELINUX, [ libselinux ],
|
PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
|
||||||
[AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
|
[AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
|
||||||
if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
|
if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
|
||||||
AC_MSG_ERROR([*** SELinux support requested but libraries not found])
|
AC_MSG_ERROR([*** SELinux support requested but libraries not found])
|
||||||
|
Loading…
Reference in New Issue
Block a user