Added checking for QNX operating system to make mbedtls build on QNX

This commit is contained in:
Matthias Weisser 2016-08-18 07:55:05 +02:00
parent e49404a95d
commit 3f21a35c36
3 changed files with 3 additions and 3 deletions
library

View file

@ -39,7 +39,7 @@
#if !defined(MBEDTLS_TIMING_ALT)
#if !defined(unix) && !defined(__unix__) && !defined(__unix) && \
!defined(__APPLE__) && !defined(_WIN32)
!defined(__APPLE__) && !defined(_WIN32) && !defined(__QNXNTO__)
#error "This module only works on Unix and Windows, see MBEDTLS_TIMING_C in config.h"
#endif