author | William Roberts <williamr@symbian.org> |
Wed, 31 Mar 2010 12:33:34 +0100 | |
branch | Symbian3 |
changeset 4 | 837f303aceeb |
parent 3 | e1b950c65cb4 |
permissions | -rw-r--r-- |
williamr@4 | 1 |
// Boost config.hpp configuration header file ------------------------------// |
williamr@4 | 2 |
|
williamr@4 | 3 |
// (C) Copyright John Maddock 2002. |
williamr@4 | 4 |
// Use, modification and distribution are subject to the |
williamr@4 | 5 |
// Boost Software License, Version 1.0. (See accompanying file |
williamr@4 | 6 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
williamr@4 | 7 |
|
williamr@4 | 8 |
// See http://www.boost.org/libs/config for most recent version. |
williamr@4 | 9 |
|
williamr@4 | 10 |
// Boost config.hpp policy and rationale documentation has been moved to |
williamr@4 | 11 |
// http://www.boost.org/libs/config |
williamr@2 | 12 |
// |
williamr@4 | 13 |
// CAUTION: This file is intended to be completely stable - |
williamr@4 | 14 |
// DO NOT MODIFY THIS FILE! |
williamr@2 | 15 |
// |
williamr@2 | 16 |
|
williamr@4 | 17 |
#ifndef BOOST_CONFIG_HPP |
williamr@4 | 18 |
#define BOOST_CONFIG_HPP |
williamr@2 | 19 |
|
williamr@4 | 20 |
// if we don't have a user config, then use the default location: |
williamr@4 | 21 |
#if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG) |
williamr@4 | 22 |
# define BOOST_USER_CONFIG <boost/config/user.hpp> |
williamr@4 | 23 |
#endif |
williamr@4 | 24 |
// include it first: |
williamr@4 | 25 |
#ifdef BOOST_USER_CONFIG |
williamr@4 | 26 |
# include BOOST_USER_CONFIG |
williamr@4 | 27 |
#endif |
williamr@4 | 28 |
// if we don't have a compiler config set, try and find one: |
williamr@4 | 29 |
#if !defined(BOOST_COMPILER_CONFIG) && !defined(BOOST_NO_COMPILER_CONFIG) && !defined(BOOST_NO_CONFIG) |
williamr@4 | 30 |
# include <boost/config/select_compiler_config.hpp> |
williamr@4 | 31 |
#endif |
williamr@4 | 32 |
// if we have a compiler config, include it now: |
williamr@4 | 33 |
#ifdef BOOST_COMPILER_CONFIG |
williamr@4 | 34 |
# include BOOST_COMPILER_CONFIG |
williamr@2 | 35 |
#endif |
williamr@2 | 36 |
|
williamr@4 | 37 |
// if we don't have a std library config set, try and find one: |
williamr@4 | 38 |
#if !defined(BOOST_STDLIB_CONFIG) && !defined(BOOST_NO_STDLIB_CONFIG) && !defined(BOOST_NO_CONFIG) |
williamr@4 | 39 |
# include <boost/config/select_stdlib_config.hpp> |
williamr@4 | 40 |
#endif |
williamr@4 | 41 |
// if we have a std library config, include it now: |
williamr@4 | 42 |
#ifdef BOOST_STDLIB_CONFIG |
williamr@4 | 43 |
# include BOOST_STDLIB_CONFIG |
williamr@2 | 44 |
#endif |
williamr@2 | 45 |
|
williamr@4 | 46 |
// if we don't have a platform config set, try and find one: |
williamr@4 | 47 |
#if !defined(BOOST_PLATFORM_CONFIG) && !defined(BOOST_NO_PLATFORM_CONFIG) && !defined(BOOST_NO_CONFIG) |
williamr@4 | 48 |
# include <boost/config/select_platform_config.hpp> |
williamr@4 | 49 |
#endif |
williamr@4 | 50 |
// if we have a platform config, include it now: |
williamr@4 | 51 |
#ifdef BOOST_PLATFORM_CONFIG |
williamr@4 | 52 |
# include BOOST_PLATFORM_CONFIG |
williamr@4 | 53 |
#endif |
williamr@4 | 54 |
|
williamr@4 | 55 |
// get config suffix code: |
williamr@4 | 56 |
#include <boost/config/suffix.hpp> |
williamr@4 | 57 |
|
williamr@4 | 58 |
#endif // BOOST_CONFIG_HPP |
williamr@4 | 59 |
|
williamr@4 | 60 |
|
williamr@4 | 61 |
|
williamr@4 | 62 |
|
williamr@4 | 63 |
|
williamr@4 | 64 |
|
williamr@4 | 65 |
|
williamr@4 | 66 |
|
williamr@4 | 67 |
|
williamr@4 | 68 |
|
williamr@4 | 69 |