summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2009-02-06 17:51:15 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2009-02-24 14:42:07 +0100
commit21dddac141c643a906ffca5c9e2fb0c4f01bfac0 (patch)
treec023df27f862345fc37876a41d3de2094bd7a4dd /configure.ac
parent80c4b7a560221d0da8a4ff5afebb1906a0308ba7 (diff)
downloadrsyslog-21dddac141c643a906ffca5c9e2fb0c4f01bfac0.tar.gz
rsyslog-21dddac141c643a906ffca5c9e2fb0c4f01bfac0.tar.xz
rsyslog-21dddac141c643a906ffca5c9e2fb0c4f01bfac0.zip
Call PKG_PROG_PKG_CONFIG m4 macro unconditionally.
As all the calls to PKG_CHECK_MODULES are conditional, it can happen that PKG_PROG_PKG_CONFIG is not called (i.e. if you not use --enable-relp). So we enforce a check for pkg-config by adding it to the global checks.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c5bcaecf..6a79d9a3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,6 +19,8 @@ AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_CANONICAL_HOST
+PKG_PROG_PKG_CONFIG
+
case "${host}" in
*-*-linux*)
os_type="linux"