mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-02 22:42:30 +03:00
Add libudev configuration check.
This commit is contained in:
parent
9a9026c29f
commit
fd8563328c
@ -1,5 +1,6 @@
|
||||
Version 2.02.52 -
|
||||
=================================
|
||||
Add libudev configuration check.
|
||||
Add lvm2app.sh to nightly tests conditional upon configure --enable-applib.
|
||||
Update lvm_vg_remove to require lvm_vg_write to commit remove to disk.
|
||||
Enforce an alphabetical lock ordering for vgname locks.
|
||||
|
14
configure.in
14
configure.in
@ -650,6 +650,20 @@ AC_ARG_ENABLE(udev_rules, [ --enable-udev_rules Install rule files needed f
|
||||
UDEV_RULES=$enableval, UDEV_RULES=$UDEV_SYNC)
|
||||
AC_MSG_RESULT($UDEV_RULES)
|
||||
|
||||
################################################################################
|
||||
dnl -- Check for libudev's udev_queue_get_udev_is_active function when udev synchronisation is enabled
|
||||
|
||||
if test x$UDEV_SYNC = xyes; then
|
||||
AC_CHECK_LIB(udev, udev_queue_get_udev_is_active, HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE=yes,
|
||||
HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE=no)
|
||||
|
||||
if test x$HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE = xyes; then
|
||||
AC_DEFINE([HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE], 1,
|
||||
[Define to 1 if libudev's udev_queue_get_udev_is_active function is available.])
|
||||
LIBS="-ludev $LIBS"
|
||||
fi
|
||||
fi
|
||||
|
||||
################################################################################
|
||||
dnl -- Compatibility mode
|
||||
AC_ARG_ENABLE(compat, [ --enable-compat Enable support for old device-mapper versions],
|
||||
|
Loading…
Reference in New Issue
Block a user