1 // (C) Copyright Dustin Spicuzza 2009.
\r
2 // Use, modification and distribution are subject to the
\r
3 // Boost Software License, Version 1.0. (See accompanying file
\r
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
\r
6 // See http://www.boost.org for most recent version.
\r
8 // vxWorks specific config options:
\r
10 #define BOOST_PLATFORM "vxWorks"
\r
12 #define BOOST_NO_CWCHAR
\r
13 #define BOOST_NO_INTRINSIC_WCHAR_T
\r
15 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
\r
16 #define BOOST_NO_INT64_T
\r
19 #define BOOST_HAS_UNISTD_H
\r
21 // these allow posix_features to work, since vxWorks doesn't
\r
22 // define them itself
\r
23 #define _POSIX_TIMERS 1
\r
24 #define _POSIX_THREADS 1
\r
26 // vxworks doesn't work with asio serial ports
\r
27 #define BOOST_ASIO_DISABLE_SERIAL_PORT
\r
29 // boilerplate code:
\r
30 #include <boost/config/posix_features.hpp>
\r