summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKarel Zak2009-12-04 20:01:37 +0100
committerKarel Zak2009-12-04 20:01:37 +0100
commit22aa51661b513b471a99e77a1ef652f2792e1b26 (patch)
treec147928fcfca458fa9ce4825dcd23ab9fbc364c4 /configure.ac
parentlibblkid: fix blkid_fstatat() code (diff)
downloadkernel-qcow2-util-linux-22aa51661b513b471a99e77a1ef652f2792e1b26.tar.gz
kernel-qcow2-util-linux-22aa51661b513b471a99e77a1ef652f2792e1b26.tar.xz
kernel-qcow2-util-linux-22aa51661b513b471a99e77a1ef652f2792e1b26.zip
build-sys: check for pkg-config before gtk-doc
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index fd692abc0..18e46695b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,9 +14,6 @@ AC_CONFIG_SRCDIR(mount/mount.c)
AC_PREFIX_DEFAULT([/usr])
-GTK_DOC_CHECK([1.10])
-AC_PATH_PROG([XSLTPROC], [xsltproc])
-
dnl version details from <major>.<minor>[-<suffix>]
PACKAGE_VERSION_MAJOR=$(echo $PACKAGE_VERSION | awk -F. '{print $1}')
PACKAGE_VERSION_MINOR=$(echo $PACKAGE_VERSION | awk -F. '{print $2}' \
@@ -82,6 +79,9 @@ LT_INIT
PKG_PROG_PKG_CONFIG
+GTK_DOC_CHECK([1.10])
+AC_PATH_PROG([XSLTPROC], [xsltproc])
+
linux_os=no
case ${host_os} in
*linux*)