diff --git a/CMakeLists.txt b/CMakeLists.txt index 4295565..10d00c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -218,12 +218,6 @@ endif() include(cmake/OpenSSL.cmake) -CHECK_INCLUDE_FILE (syslog.h HAVE_SYSLOG_H) -if (HAVE_SYSLOG_H) - add_definitions(/DHAVE_SYSLOG_H) - set(SOURCES_SYSLOG src/common/log/SysLog.h src/common/log/SysLog.cpp) -endif() - if (WITH_GOOGLE_BREAKPAD) include_directories(/usr/local/include/breakpad) set(GOOGLE_BREAKPAD_LIBS breakpad_client) diff --git a/src/App_unix.cpp b/src/App_unix.cpp index 9680167..42d2c78 100644 --- a/src/App_unix.cpp +++ b/src/App_unix.cpp @@ -29,7 +29,7 @@ #include "App.h" -#include "common/log/Log.h" +#include "base/io/log/Log.h" #include "core/Config.h" #include "core/Controller.h"