From: Edgar Fuß Date: Tue, 29 Oct 2019 17:53:27 +0000 (+0100) Subject: Fix libtokyotyrant handling X-Git-Tag: collectd-5.11.0~60^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3329%2Fhead;p=thirdparty%2Fcollectd.git Fix libtokyotyrant handling In libtokyotyrant handling, set with_libtokyotyrant_ldflags to "-L$withval/lib", not "-L$withval/include". --- diff --git a/configure.ac b/configure.ac index 59a7f355c..40ccafe3c 100644 --- a/configure.ac +++ b/configure.ac @@ -5399,7 +5399,7 @@ AC_ARG_WITH([libtokyotyrant], with_libtokyotyrant="$withval" else with_libtokyotyrant_cppflags="-I$withval/include" - with_libtokyotyrant_ldflags="-L$withval/include" + with_libtokyotyrant_ldflags="-L$withval/lib" with_libtokyotyrant_libs="-ltokyotyrant" with_libtokyotyrant="yes" fi