if test "$with_storage_disk" = "yes" ||
test "$with_storage_disk" = "check"; then
if test "$with_storage_disk" = "yes" &&
- test "$PARTED_FOUND" != "yes"; then
+ test "$with_libparted" != "yes"; then
AC_MSG_ERROR([Need parted for disk storage driver])
fi
if test "$with_storage_disk" = "check"; then
- if test "$PARTED_FOUND" != "yes"; then
+ if test "$with_libparted" != "yes"; then
with_storage_disk=no
else
with_storage_disk=yes
AC_DEFUN([LIBVIRT_CHECK_LIBPARTED], [
PARTED_REQUIRED="1.8.0"
- LIBPARTED_CFLAGS=
- LIBPARTED_LIBS=
- AC_PATH_PROG([PARTED], [parted], [], [$LIBVIRT_SBIN_PATH])
- if test -z "$PARTED" ; then
- PARTED_FOUND=no
- else
- PARTED_FOUND=yes
- fi
+ with_libparted=check
+
+ LIBVIRT_CHECK_PKG([LIBPARTED], [libparted], [$PARTED_REQUIRED])
- if test "$PARTED_FOUND" = "yes" && test "x$PKG_CONFIG" != "x" ; then
- PKG_CHECK_MODULES([LIBPARTED], [libparted >= $PARTED_REQUIRED], [],
- [PARTED_FOUND=no])
+ if test "x$with_libparted" = "xyes"; then
+ AC_PATH_PROG([PARTED], [parted], [], [$LIBVIRT_SBIN_PATH])
+ if test -z "$PARTED" ; then
+ with_libparted=no
+ fi
fi
- if test "$PARTED_FOUND" = "yes"; then
+ if test "x$with_libparted" = "xyes"; then
AC_DEFINE_UNQUOTED([PARTED], ["$PARTED"],
[Location or name of the parted program])
fi
- AC_SUBST([LIBPARTED_CFLAGS])
- AC_SUBST([LIBPARTED_LIBS])
])