# HG changeset patch # User Mike Ruprecht # Date 1474827006 18000 # Node ID 2faa45c9123a206376300c90ac2aa6dad4dff69a # Parent 7cb860a7bb2e9f0e187a9f9915712c0d7ea73856 configure.ac: Fix test for gg_is_gpl_complaint in non-standard location If libgadu isn't in a standard library include directory (aka Windows), AC_CHECK_LIB() will fail, unable to find it. This patch adds the pkg-config $LIBGADU_LIBS variable to AC_CHECK_LIB()'s other-libraries argument in order to allow it to find the library, wherever it is. diff -r 7cb860a7bb2e -r 2faa45c9123a configure.ac --- a/configure.ac Thu Sep 22 14:00:27 2016 -0500 +++ b/configure.ac Sun Sep 25 13:10:06 2016 -0500 @@ -1198,7 +1198,7 @@ Falling back to using our own copy of libgadu. ]) - ]) + ], [$LIBGADU_LIBS]) fi AM_CONDITIONAL(HAVE_LIBGADU, test "x$have_libgadu" = "xyes")