]> git.lyx.org Git - lyx.git/blob - boost/boost/config/stdlib/vacpp.hpp
update to boost 1.46.1. Tested on Win, Mac, Linux, GCC 4.2, 4.4, 4.5, 4.6
[lyx.git] / boost / boost / config / stdlib / vacpp.hpp
1 //  (C) Copyright John Maddock 2001 - 2002. 
2 //  Use, modification and distribution are subject to the 
3 //  Boost Software License, Version 1.0. (See accompanying file 
4 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 //  See http://www.boost.org for most recent version.
7
8 #if __IBMCPP__ <= 501
9 #  define BOOST_NO_STD_ALLOCATOR
10 #endif
11
12 #define BOOST_HAS_MACRO_USE_FACET
13 #define BOOST_NO_STD_MESSAGES
14
15 // Apple doesn't seem to reliably defined a *unix* macro
16 #if !defined(CYGWIN) && (  defined(__unix__)  \
17                         || defined(__unix)    \
18                         || defined(unix)      \
19                         || defined(__APPLE__) \
20                         || defined(__APPLE)   \
21                         || defined(APPLE))
22 #  include <unistd.h>
23 #endif
24
25 //  C++0x headers not yet implemented
26 //
27 #  define BOOST_NO_0X_HDR_ARRAY
28 #  define BOOST_NO_0X_HDR_CHRONO
29 #  define BOOST_NO_0X_HDR_CODECVT
30 #  define BOOST_NO_0X_HDR_CONCEPTS
31 #  define BOOST_NO_0X_HDR_CONDITION_VARIABLE
32 #  define BOOST_NO_0X_HDR_CONTAINER_CONCEPTS
33 #  define BOOST_NO_0X_HDR_FORWARD_LIST
34 #  define BOOST_NO_0X_HDR_FUTURE
35 #  define BOOST_NO_0X_HDR_INITIALIZER_LIST
36 #  define BOOST_NO_0X_HDR_ITERATOR_CONCEPTS
37 #  define BOOST_NO_0X_HDR_MEMORY_CONCEPTS
38 #  define BOOST_NO_0X_HDR_MUTEX
39 #  define BOOST_NO_0X_HDR_RANDOM
40 #  define BOOST_NO_0X_HDR_RATIO
41 #  define BOOST_NO_0X_HDR_REGEX
42 #  define BOOST_NO_0X_HDR_SYSTEM_ERROR
43 #  define BOOST_NO_0X_HDR_THREAD
44 #  define BOOST_NO_0X_HDR_TUPLE
45 #  define BOOST_NO_0X_HDR_TYPE_TRAITS
46 #  define BOOST_NO_0X_HDR_TYPEINDEX
47 #  define BOOST_NO_STD_UNORDERED        // deprecated; see following
48 #  define BOOST_NO_0X_HDR_UNORDERED_MAP
49 #  define BOOST_NO_0X_HDR_UNORDERED_SET
50 #  define BOOST_NO_NUMERIC_LIMITS_LOWEST
51
52 #define BOOST_STDLIB "Visual Age default standard library"
53
54
55