Compilation fix: add missing "/include"

Style fix
This commit is contained in:
Denis Glazachev 2020-05-29 16:14:42 +04:00
parent cd5d3ed618
commit 9fb0a95c75
2 changed files with 4 additions and 2 deletions

View File

@ -55,7 +55,7 @@ if (ENABLE_LDAP)
set (USE_INTERNAL_LDAP_LIBRARY 1)
set (OPENLDAP_ROOT_DIR "${ClickHouse_SOURCE_DIR}/contrib/openldap")
set (OPENLDAP_INCLUDE_DIRS
"${ClickHouse_SOURCE_DIR}/contrib/openldap-cmake/${_system_name}_${_system_processor}"
"${ClickHouse_SOURCE_DIR}/contrib/openldap-cmake/${_system_name}_${_system_processor}/include"
"${ClickHouse_SOURCE_DIR}/contrib/openldap/include"
)
# Below, 'ldap'/'ldap_r' and 'lber' will be resolved to

View File

@ -8,8 +8,10 @@
#include <mutex>
namespace Poco {
namespace Poco
{
class Logger;
namespace Util
{
class AbstractConfiguration;