From ae0b41153cbc40222ba6761f9f373c85d6adc642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Thu, 7 Jan 2021 14:18:36 +0000 Subject: [PATCH] Fix PR288 --- ChangeLog | 2 ++ configure | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fda2551..0e34cee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -31,6 +31,8 @@ Version 4.5.2 'dan Eider': * Add new --log-binding option to enable binding request logging - Fix stale-nonce documentation. Resolves #604 - Version number is changed to semver 2.0 + - Merge PR #288 (by Hristo Venev) + * pkg-config, and various cleanups in connfigure file 24/06/2020 Oleg Moskalenko Mihály Mészáros Version 4.5.1.3 'dan Eider': diff --git a/configure b/configure index f9faed6..2884d6c 100755 --- a/configure +++ b/configure @@ -904,7 +904,7 @@ fi ########################### if [ -z "${TURN_NO_MYSQL}" ] ; then - if testpkg_server mariadb || testpkg_server mysqlclient ; then + if testpkg_db mariadb || testpkg_server mysqlclient ; then ${ECHO_CMD} "MySQL found." else ${ECHO_CMD} "MySQL not found. Building without MySQL support." @@ -919,7 +919,7 @@ fi ########################### if [ -z "${TURN_NO_MONGO}" ] ; then - if testpkg_server libmongoc-1.0; then + if testpkg_db libmongoc-1.0; then ${ECHO_CMD} "MongoDB found." else ${ECHO_CMD} "MongoDB not found. Building without MongoDB support."