diff options
author | Tomas Heinrich <theinric@redhat.com> | 2013-06-03 14:05:18 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-03 18:21:15 +0200 |
commit | 6e72fa690074658eab094498e166fcf55ab506d1 (patch) | |
tree | 1e1607bf0ac00c5dd855c9c5a12851722d61af27 | |
parent | 7e693b19f051a1400995235efee1bf5dd04080f9 (diff) | |
download | rsyslog-6e72fa690074658eab094498e166fcf55ab506d1.tar.gz rsyslog-6e72fa690074658eab094498e166fcf55ab506d1.tar.bz2 rsyslog-6e72fa690074658eab094498e166fcf55ab506d1.zip |
build: don't check for libs that are not needed
-rw-r--r-- | configure.ac | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index a43e0292..43565aa0 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,6 @@ PKG_PROG_PKG_CONFIG # modules we require PKG_CHECK_MODULES(LIBESTR, libestr >= 0.1.5) -PKG_CHECK_MODULES(LIBEE, libee >= 0.4.0) PKG_CHECK_MODULES([JSON_C], [json]) case "${host}" in @@ -918,6 +917,7 @@ AC_ARG_ENABLE(mmnormalize, [enable_mmnormalize=no] ) if test "x$enable_mmnormalize" = "xyes"; then + PKG_CHECK_MODULES(LIBEE, libee >= 0.4.0) PKG_CHECK_MODULES(LIBLOGNORM, lognorm >= 0.3.1) fi AM_CONDITIONAL(ENABLE_MMNORMALIZE, test x$enable_mmnormalize = xyes) @@ -933,9 +933,6 @@ AC_ARG_ENABLE(mmjsonparse, esac], [enable_mmjsonparse=no] ) -if test "x$enable_mmjsonparse" = "xyes"; then - PKG_CHECK_MODULES(LIBLOGNORM, lognorm >= 0.3.1) -fi AM_CONDITIONAL(ENABLE_MMJSONPARSE, test x$enable_mmjsonparse = xyes) @@ -949,9 +946,6 @@ AC_ARG_ENABLE(mmaudit, esac], [enable_mmaudit=no] ) -if test "x$enable_mmaudit" = "xyes"; then - PKG_CHECK_MODULES(LIBLOGNORM, lognorm >= 0.3.1) -fi AM_CONDITIONAL(ENABLE_MMAUDIT, test x$enable_mmaudit = xyes) |