1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-26 08:04:14 +00:00

fix the 'sleep_for' missing error on linux platform

This commit is contained in:
guanqun 2015-03-27 10:48:26 +08:00
parent c92e00c21f
commit eddb5fa91e

View File

@ -103,6 +103,8 @@ endif ()
# compiler flags customization (by system)
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonLinux.cpp")
# "'sleep_for' is not a member of 'std::this_thread'" in gcc 4.7/4.8
add_definitions( "-D_GLIBCXX_USE_NANOSLEEP=1" )
elseif (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonLinux.cpp")
# "'sleep_for' is not a member of 'std::this_thread'" in gcc 4.7/4.8