diff options
author | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> | 2013-06-20 21:21:37 +0300 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2013-06-20 21:50:57 +0100 |
commit | 2bc0281352a894e75dedcf3cc41fcba487e3b74b (patch) | |
tree | 80dd493ae3a0d0d87da1c988acdbac713fd2c8b5 /m4 | |
parent | 2bb800dd414038f233576acf53c0f2fd0d3609cd (diff) | |
download | coreutils-2bc0281352a894e75dedcf3cc41fcba487e3b74b.tar.xz |
id: adjust/restrict smack support to newer versions of libsmack
There was slight change to libsmack such that positive values are
reserved for returning length of the label for smack_new_label_from_*
functions.
* m4/jm-macros.m4: Set HAVE_SMACK when both smack_new_label_from_self()
and recently added smack_new_label_from_path() are present.
The latter's presence indicates the newer API of the former.
* src/id.c (main): Check that smack_new_label_from_self() < 0,
and not just non-zero.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/jm-macros.m4 | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 2e0476de3..649a3444c 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -146,11 +146,12 @@ AC_DEFUN([coreutils_MACROS], AC_ARG_ENABLE([libsmack], AC_HELP_STRING([--disable-libsmack], [disable libsmack support])) if test "X$enable_libsmack" != "Xno"; then - AC_CHECK_LIB([smack], [smack_smackfs_path], - [AC_CHECK_HEADER([sys/smack.h], - [LIB_SMACK=-lsmack - AC_DEFINE([HAVE_SMACK], [1], [libsmack usability])] - )]) + AC_CHECK_LIB([smack], [smack_new_label_from_self], + [AC_CHECK_LIB([smack], [smack_new_label_from_path], + [AC_CHECK_HEADER([sys/smack.h], + [LIB_SMACK=-lsmack + AC_DEFINE([HAVE_SMACK], [1], [libsmack usability])] + )])]) if test "X$LIB_SMACK" = "X"; then if test "X$enable_libsmack" = "Xyes"; then AC_MSG_ERROR([libsmack library was not found or not usable]) |