]> xenbits.xensource.com Git - libvirt.git/commitdiff
m4/virt-parted: use LIBVIRT_CHECK_PKG
authorPavel Hrdina <phrdina@redhat.com>
Mon, 12 Dec 2016 12:46:19 +0000 (13:46 +0100)
committerPavel Hrdina <phrdina@redhat.com>
Wed, 21 Dec 2016 14:39:40 +0000 (15:39 +0100)
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
configure.ac
m4/virt-parted.m4

index 517b51bdc91bbb7bc2244ee79055f50bcb514c68..88934b5e6fd8d25641ab99abe21638a4b2949967 100644 (file)
@@ -1380,12 +1380,12 @@ LIBVIRT_CHECK_LIBPARTED
 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
index a233ed75c9353c15c8db68907454b466dcd3af4c..a73050a8b10ef5350142ab2a00ad105c881e9947 100644 (file)
@@ -19,25 +19,20 @@ dnl
 
 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])
 ])