Skip to content

Commit

Permalink
Fix PR288
Browse files Browse the repository at this point in the history
  • Loading branch information
misi committed Jan 7, 2021
1 parent 05ecf28 commit ae0b411
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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 <mom040267@gmail.com> Mihály Mészáros <misi@majd.eu>
Version 4.5.1.3 'dan Eider':
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand All @@ -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."
Expand Down

0 comments on commit ae0b411

Please sign in to comment.