Move all (nano|u)sleep-related decisions to default port implementation (#2462)

... where they belong.

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss
2018-08-11 00:06:25 +02:00
committed by GitHub
parent fb35e34801
commit 29e7330b9b
6 changed files with 17 additions and 24 deletions
-10
View File
@@ -211,16 +211,6 @@ if(FEATURE_DEBUGGER)
message(FATAL_ERROR "This configuration is not supported. Please build against your system libc to enable the JerryScript debugger.")
endif()
# Sleep function availability check
INCLUDE (CheckIncludeFiles)
CHECK_INCLUDE_FILES (time.h HAVE_TIME_H)
CHECK_INCLUDE_FILES (unistd.h HAVE_UNISTD_H)
if(HAVE_TIME_H)
set(DEFINES_JERRY ${DEFINES_JERRY} HAVE_TIME_H)
elseif(HAVE_UNISTD_H)
set(DEFINES_JERRY ${DEFINES_JERRY} HAVE_UNISTD_H)
endif()
set(DEFINES_JERRY ${DEFINES_JERRY} JERRY_DEBUGGER)
endif()