diff options
author | Pavel Hrdina <phrdina@redhat.com> | 2016-12-12 18:11:51 +0100 |
---|---|---|
committer | Pavel Hrdina <phrdina@redhat.com> | 2016-12-21 15:39:37 +0100 |
commit | eeccee1870f2eaf05c8b56dc9f5244cf508b0360 (patch) | |
tree | 6aec183c217f1a55b75bb5f378baa37ac3f79f5c /m4/virt-blkid.m4 | |
parent | e03d43714ad15ca254f1bb317ead5ff84649df52 (diff) | |
download | libvirt-eeccee1870f2eaf05c8b56dc9f5244cf508b0360.tar.gz |
m4/virt: introduce LIBVIRT_ARG_* macros for all library checks
Usage of AC_REQUIRE will mess with order how LIBVIRT_CHECK_* macros
are composed into configure.ac. This ensures that the output of
configure --help is properly ordered and grouped into sections.
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Diffstat (limited to 'm4/virt-blkid.m4')
-rw-r--r-- | m4/virt-blkid.m4 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/m4/virt-blkid.m4 b/m4/virt-blkid.m4 index fb95eb9106..db225a1d9a 100644 --- a/m4/virt-blkid.m4 +++ b/m4/virt-blkid.m4 @@ -17,8 +17,11 @@ dnl License along with this library. If not, see dnl <http://www.gnu.org/licenses/>. dnl -AC_DEFUN([LIBVIRT_CHECK_BLKID],[ +AC_DEFUN([LIBVIRT_ARG_BLKID],[ LIBVIRT_ARG_WITH([BLKID], [blkid], [check], [2.17]) +]) + +AC_DEFUN([LIBVIRT_CHECK_BLKID],[ LIBVIRT_CHECK_PKG([BLKID], [blkid], [2.17]) ]) |