mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Only include selinux libs in libdevmapper.pc when selinux build enabled.
This commit is contained in:
parent
db8b5af9d9
commit
e1b8a236b7
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.54 -
|
Version 2.02.54 -
|
||||||
=====================================
|
=====================================
|
||||||
|
Only include selinux libs in libdevmapper.pc when selinux build enabled.
|
||||||
Allow for a build directory separate from the source.
|
Allow for a build directory separate from the source.
|
||||||
Update distclean target for rename clogd to cmirrord. (2.02.52)
|
Update distclean target for rename clogd to cmirrord. (2.02.52)
|
||||||
Only do lock conversions in clvmd if we are explicitly asked for one.
|
Only do lock conversions in clvmd if we are explicitly asked for one.
|
||||||
|
7
configure
vendored
7
configure
vendored
@ -651,6 +651,7 @@ UDEV_RULES
|
|||||||
STATIC_LINK
|
STATIC_LINK
|
||||||
STATICDIR
|
STATICDIR
|
||||||
SNAPSHOTS
|
SNAPSHOTS
|
||||||
|
SELINUX_LIBS
|
||||||
POOL
|
POOL
|
||||||
PKGCONFIG
|
PKGCONFIG
|
||||||
OWNER
|
OWNER
|
||||||
@ -12910,7 +12911,7 @@ cat >>confdefs.h <<\_ACEOF
|
|||||||
#define HAVE_SEPOL 1
|
#define HAVE_SEPOL 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
LIBS="-lsepol $LIBS"
|
SELINUX_LIBS="-lsepol $SELINUX_LIBS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{ $as_echo "$as_me:$LINENO: checking for is_selinux_enabled in -lselinux" >&5
|
{ $as_echo "$as_me:$LINENO: checking for is_selinux_enabled in -lselinux" >&5
|
||||||
@ -12991,11 +12992,12 @@ cat >>confdefs.h <<\_ACEOF
|
|||||||
#define HAVE_SELINUX 1
|
#define HAVE_SELINUX 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
LIBS="-lselinux $LIBS"
|
SELINUX_LIBS="-lselinux $SELINUX_LIBS"
|
||||||
else
|
else
|
||||||
{ $as_echo "$as_me:$LINENO: WARNING: Disabling selinux" >&5
|
{ $as_echo "$as_me:$LINENO: WARNING: Disabling selinux" >&5
|
||||||
$as_echo "$as_me: WARNING: Disabling selinux" >&2;}
|
$as_echo "$as_me: WARNING: Disabling selinux" >&2;}
|
||||||
fi
|
fi
|
||||||
|
LIBS="$SELINUX_LIBS $LIBS"
|
||||||
|
|
||||||
# With --enable-static_link and selinux enabled, linking
|
# With --enable-static_link and selinux enabled, linking
|
||||||
# fails on at least Debian unstable due to unsatisfied references
|
# fails on at least Debian unstable due to unsatisfied references
|
||||||
@ -15522,6 +15524,7 @@ LVM_LIBAPI=`echo "$VER" | $AWK -F '[()]' '{print $2}'`
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -841,17 +841,18 @@ if test x$SELINUX = xyes; then
|
|||||||
if test x$HAVE_SEPOL = xyes; then
|
if test x$HAVE_SEPOL = xyes; then
|
||||||
AC_DEFINE([HAVE_SEPOL], 1,
|
AC_DEFINE([HAVE_SEPOL], 1,
|
||||||
[Define to 1 if sepol_check_context is available.])
|
[Define to 1 if sepol_check_context is available.])
|
||||||
LIBS="-lsepol $LIBS"
|
SELINUX_LIBS="-lsepol $SELINUX_LIBS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no)
|
AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no)
|
||||||
|
|
||||||
if test x$HAVE_SELINUX = xyes; then
|
if test x$HAVE_SELINUX = xyes; then
|
||||||
AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
|
AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
|
||||||
LIBS="-lselinux $LIBS"
|
SELINUX_LIBS="-lselinux $SELINUX_LIBS"
|
||||||
else
|
else
|
||||||
AC_MSG_WARN(Disabling selinux)
|
AC_MSG_WARN(Disabling selinux)
|
||||||
fi
|
fi
|
||||||
|
LIBS="$SELINUX_LIBS $LIBS"
|
||||||
|
|
||||||
# With --enable-static_link and selinux enabled, linking
|
# With --enable-static_link and selinux enabled, linking
|
||||||
# fails on at least Debian unstable due to unsatisfied references
|
# fails on at least Debian unstable due to unsatisfied references
|
||||||
@ -1126,6 +1127,7 @@ AC_SUBST(SACKPT_CFLAGS)
|
|||||||
AC_SUBST(SACKPT_LIBS)
|
AC_SUBST(SACKPT_LIBS)
|
||||||
AC_SUBST(SALCK_CFLAGS)
|
AC_SUBST(SALCK_CFLAGS)
|
||||||
AC_SUBST(SALCK_LIBS)
|
AC_SUBST(SALCK_LIBS)
|
||||||
|
AC_SUBST(SELINUX_LIBS)
|
||||||
AC_SUBST(SNAPSHOTS)
|
AC_SUBST(SNAPSHOTS)
|
||||||
AC_SUBST(STATICDIR)
|
AC_SUBST(STATICDIR)
|
||||||
AC_SUBST(STATIC_LINK)
|
AC_SUBST(STATIC_LINK)
|
||||||
|
@ -8,4 +8,4 @@ Description: device-mapper library
|
|||||||
Version: @DM_LIB_PATCHLEVEL@
|
Version: @DM_LIB_PATCHLEVEL@
|
||||||
Cflags: -I${includedir}
|
Cflags: -I${includedir}
|
||||||
Libs: -L${libdir} -ldevmapper
|
Libs: -L${libdir} -ldevmapper
|
||||||
Libs.private: -lselinux -lsepol
|
Libs.private: @SELINUX_LIBS@
|
||||||
|
Loading…
Reference in New Issue
Block a user