1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Require libudev >= 143 when compiling with udev support.

Old versions of libudev < 143 were experimental and unstable. Require recent
and stable versions only (version 143 is old enough anyway).
This commit is contained in:
Peter Rajnoha 2011-04-22 11:56:41 +00:00
parent a1e22157d3
commit 71b29ddcc4
5 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,6 @@
Version 1.02.64 -
===================================
Require libudev >= 143 when compiling with udev support.
Use word alignment for dm_pool_strdup() and dm_pool_strndup().
Use dm_snprintf() to fix signess warning in dm_set_dev_dir().
Use unsigned loop counter to fix signess warning in _other_node_ops().

View File

@ -803,9 +803,7 @@ AC_ARG_ENABLE(udev_sync,
AC_MSG_RESULT($UDEV_SYNC)
if test x$UDEV_SYNC = xyes; then
AC_CHECK_LIB(udev, udev_queue_get_udev_is_active,
[UDEV_PC="libudev"; UDEV_LIBS="-ludev"],
[AC_MSG_ERROR([bailing out... libudev library is required])])
PKG_CHECK_MODULES(UDEV, libudev >= 143, [UDEV_PC="libudev"])
AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable synchronisation with udev processing.])
fi

View File

@ -29,7 +29,6 @@
# include <sys/types.h>
# include <sys/ipc.h>
# include <sys/sem.h>
# define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE
# include <libudev.h>
#endif

View File

@ -45,7 +45,6 @@
# include <sys/types.h>
# include <sys/ipc.h>
# include <sys/sem.h>
# define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE
# include <libudev.h>
#endif

View File

@ -43,7 +43,6 @@ extern char *optarg;
#endif
#ifdef UDEV_SYNC_SUPPORT
# define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE
# include <libudev.h>
#endif