libsmbios_c library
|
00001 // Boost config.h 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.h 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_C_CONFIG_H 00019 #define LIBSMBIOS_C_CONFIG_H 00020 00021 // if we don't have a user config, then use the default location: 00022 #if !defined(LIBSMBIOS_C_USER_CONFIG) && !defined(LIBSMBIOS_C_NO_USER_CONFIG) 00023 # define LIBSMBIOS_C_USER_CONFIG <smbios_c/config/user.h> 00024 #endif 00025 // include it first: 00026 #ifdef LIBSMBIOS_C_USER_CONFIG 00027 # include LIBSMBIOS_C_USER_CONFIG 00028 #endif 00029 00030 // if we don't have a compiler config set, try and find one: 00031 #if !defined(LIBSMBIOS_C_COMPILER_CONFIG) && !defined(LIBSMBIOS_C_NO_COMPILER_CONFIG) && !defined(LIBSMBIOS_C_NO_CONFIG) 00032 # include <smbios_c/config/select_compiler_config.h> 00033 #endif 00034 // if we have a compiler config, include it now: 00035 #ifdef LIBSMBIOS_C_COMPILER_CONFIG 00036 # include LIBSMBIOS_C_COMPILER_CONFIG 00037 #endif 00038 00039 00040 // if we don't have a platform config set, try and find one: 00041 #if !defined(LIBSMBIOS_C_PLATFORM_CONFIG) && !defined(LIBSMBIOS_C_NO_PLATFORM_CONFIG) && !defined(LIBSMBIOS_C_NO_CONFIG) 00042 # include <smbios_c/config/select_platform_config.h> 00043 #endif 00044 // if we have a platform config, include it now: 00045 #ifdef LIBSMBIOS_C_PLATFORM_CONFIG 00046 # include LIBSMBIOS_C_PLATFORM_CONFIG 00047 #endif 00048 00049 // get config suffix code: 00050 #include <smbios_c/config/suffix.h> 00051 00052 #endif // LIBSMBIOS_C_CONFIG_H 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063