From a42349b9f8b4cbdcc6ad763ccf509f84fbaaf39d Mon Sep 17 00:00:00 2001 From: Maksym Mamontov Date: Fri, 19 Aug 2022 22:38:11 +0300 Subject: [PATCH] Look for mysql-connector in FreeBSD paths. --- cmake/modules/FindMySQLConnector.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/FindMySQLConnector.cmake b/cmake/modules/FindMySQLConnector.cmake index 6ab31aea..77892f57 100644 --- a/cmake/modules/FindMySQLConnector.cmake +++ b/cmake/modules/FindMySQLConnector.cmake @@ -1,7 +1,7 @@ -find_path ( MySQLConnector_INCLUDE_DIR NAMES mysql/mysql.h mysql/mysql_version.h DOC "Path to MySQLConnector header files." ) +find_path ( MySQLConnector_INCLUDE_DIR PATHS /usr/local/include NAMES mysql/mysql.h mysql/mysql_version.h DOC "Path to MySQLConnector header files." ) mark_as_advanced ( MySQLConnector_INCLUDE_DIR ) -find_library ( MySQLConnector_LIB NAMES mysqlclient DOC "Location of MySQLConnector library." ) +find_library ( MySQLConnector_LIB PATHS /usr/local/lib NAMES mysqlclient DOC "Location of MySQLConnector library." ) mark_as_advanced ( MySQLConnector_LIB ) if ( MySQLConnector_INCLUDE_DIR ) -- 2.43.2