libsmbios_c library
|
00001 // Boost config.hpp configuration header file ------------------------------// 00002 00003 // (C) Copyright John Maddock 2002. 00004 // Use, modification and distribution are subject to the 00005 // Boost Software License, Version 1.0. (See accompanying file 00006 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00007 00008 // See http://www.boost.org/libs/config for most recent version. 00009 00010 // Boost config.hpp policy and rationale documentation has been moved to 00011 // http://www.boost.org/libs/config 00012 // 00013 // CAUTION: This file is intended to be completely stable - 00014 // DO NOT MODIFY THIS FILE! 00015 // 00016 // Modified for libsmbios project: 2004-03-28 by Michael Brown 00017 00018 #ifndef LIBSMBIOS_CONFIG_H 00019 #define LIBSMBIOS_CONFIG_H 00020 00021 // if we don't have a user config, then use the default location: 00022 #if !defined(LIBSMBIOS_USER_CONFIG) && !defined(LIBSMBIOS_NO_USER_CONFIG) 00023 # define LIBSMBIOS_USER_CONFIG <smbios/config/user.hpp> 00024 #endif 00025 // include it first: 00026 #ifdef LIBSMBIOS_USER_CONFIG 00027 # include LIBSMBIOS_USER_CONFIG 00028 #endif 00029 00030 // if we don't have a compiler config set, try and find one: 00031 #if !defined(LIBSMBIOS_COMPILER_CONFIG) && !defined(LIBSMBIOS_NO_COMPILER_CONFIG) && !defined(LIBSMBIOS_NO_CONFIG) 00032 # include <smbios/config/select_compiler_config.hpp> 00033 #endif 00034 // if we have a compiler config, include it now: 00035 #ifdef LIBSMBIOS_COMPILER_CONFIG 00036 # include LIBSMBIOS_COMPILER_CONFIG 00037 #endif 00038 00039 // if we don't have a std library config set, try and find one: 00040 #if !defined(LIBSMBIOS_STDLIB_CONFIG) && !defined(LIBSMBIOS_NO_STDLIB_CONFIG) && !defined(LIBSMBIOS_NO_CONFIG) 00041 # include <smbios/config/select_stdlib_config.hpp> 00042 #endif 00043 // if we have a std library config, include it now: 00044 #ifdef LIBSMBIOS_STDLIB_CONFIG 00045 # include LIBSMBIOS_STDLIB_CONFIG 00046 #endif 00047 00048 // if we don't have a platform config set, try and find one: 00049 #if !defined(LIBSMBIOS_PLATFORM_CONFIG) && !defined(LIBSMBIOS_NO_PLATFORM_CONFIG) && !defined(LIBSMBIOS_NO_CONFIG) 00050 # include <smbios/config/select_platform_config.hpp> 00051 #endif 00052 // if we have a platform config, include it now: 00053 #ifdef LIBSMBIOS_PLATFORM_CONFIG 00054 # include LIBSMBIOS_PLATFORM_CONFIG 00055 #endif 00056 00057 // get config suffix code: 00058 #include <smbios/config/suffix.hpp> 00059 00060 #endif // LIBSMBIOS_CONFIG_H 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071