| // Boost config.hpp configuration header file ------------------------------// |
| |
| // (C) Copyright John Maddock 2002. |
| // Use, modification and distribution are subject to the |
| // Boost Software License, Version 1.0. (See accompanying file |
| // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| |
| // See http://www.boost.org/libs/config for most recent version. |
| |
| // Boost config.hpp policy and rationale documentation has been moved to |
| // http://www.boost.org/libs/config |
| // |
| // CAUTION: This file is intended to be completely stable - |
| // DO NOT MODIFY THIS FILE! |
| // |
| |
| #ifndef NDNBOOST_CONFIG_HPP |
| #define NDNBOOST_CONFIG_HPP |
| |
| // if we don't have a user config, then use the default location: |
| #if !defined(NDNBOOST_USER_CONFIG) && !defined(NDNBOOST_NO_USER_CONFIG) |
| # define NDNBOOST_USER_CONFIG <ndnboost/config/user.hpp> |
| #endif |
| // include it first: |
| #ifdef NDNBOOST_USER_CONFIG |
| # include NDNBOOST_USER_CONFIG |
| #endif |
| |
| // if we don't have a compiler config set, try and find one: |
| #if !defined(NDNBOOST_COMPILER_CONFIG) && !defined(NDNBOOST_NO_COMPILER_CONFIG) && !defined(NDNBOOST_NO_CONFIG) |
| # include <ndnboost/config/select_compiler_config.hpp> |
| #endif |
| // if we have a compiler config, include it now: |
| #ifdef NDNBOOST_COMPILER_CONFIG |
| # include NDNBOOST_COMPILER_CONFIG |
| #endif |
| |
| // if we don't have a std library config set, try and find one: |
| #if !defined(NDNBOOST_STDLIB_CONFIG) && !defined(NDNBOOST_NO_STDLIB_CONFIG) && !defined(NDNBOOST_NO_CONFIG) && defined(__cplusplus) |
| # include <ndnboost/config/select_stdlib_config.hpp> |
| #endif |
| // if we have a std library config, include it now: |
| #ifdef NDNBOOST_STDLIB_CONFIG |
| # include NDNBOOST_STDLIB_CONFIG |
| #endif |
| |
| // if we don't have a platform config set, try and find one: |
| #if !defined(NDNBOOST_PLATFORM_CONFIG) && !defined(NDNBOOST_NO_PLATFORM_CONFIG) && !defined(NDNBOOST_NO_CONFIG) |
| # include <ndnboost/config/select_platform_config.hpp> |
| #endif |
| // if we have a platform config, include it now: |
| #ifdef NDNBOOST_PLATFORM_CONFIG |
| # include NDNBOOST_PLATFORM_CONFIG |
| #endif |
| |
| // get config suffix code: |
| #include <ndnboost/config/suffix.hpp> |
| |
| #endif // NDNBOOST_CONFIG_HPP |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |