From: Karel Zak Date: Wed, 20 Mar 2013 13:59:21 +0000 (+0100) Subject: build-sys: check for security_get_initial_context() X-Git-Tag: v2.23-rc1~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=312f04f497ef3587504767182678151fc56e4d83;p=thirdparty%2Futil-linux.git build-sys: check for security_get_initial_context() Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index 3aae6eb2e6..b32d024ff0 100644 --- a/configure.ac +++ b/configure.ac @@ -567,6 +567,13 @@ else case "$with_selinux:$have_selinux" in yes:no) AC_MSG_ERROR([SELinux selected but libselinux not found or too old]);; esac + + if test "x$have_selinux" = xyes; then + UL_SET_FLAGS([], [], [$SELINUX_LIBS]) + # This function is missing in old libselinux 1.xx versions + AC_CHECK_FUNCS([security_get_initial_context]) + UL_RESTORE_FLAGS + fi fi AC_SUBST([SELINUX_LIBS]) AC_SUBST([SELINUX_LIBS_STATIC])