libsmbios_c library
config.hpp
Go to the documentation of this file.
1 // Boost config.hpp configuration header file ------------------------------//
2 
3 // (C) Copyright John Maddock 2002.
4 // Use, modification and distribution are subject to the
5 // Boost Software License, Version 1.0. (See accompanying file
6 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 
8 // See http://www.boost.org/libs/config for most recent version.
9 
10 // Boost config.hpp policy and rationale documentation has been moved to
11 // http://www.boost.org/libs/config
12 //
13 // CAUTION: This file is intended to be completely stable -
14 // DO NOT MODIFY THIS FILE!
15 //
16 // Modified for libsmbios project: 2004-03-28 by Michael Brown
17 
18 #ifndef LIBSMBIOS_CONFIG_H
19 #define LIBSMBIOS_CONFIG_H
20 
21 // if we don't have a user config, then use the default location:
22 #if !defined(LIBSMBIOS_USER_CONFIG) && !defined(LIBSMBIOS_NO_USER_CONFIG)
23 # define LIBSMBIOS_USER_CONFIG <smbios/config/user.hpp>
24 #endif
25 // include it first:
26 #ifdef LIBSMBIOS_USER_CONFIG
27 # include LIBSMBIOS_USER_CONFIG
28 #endif
29 
30 // if we don't have a compiler config set, try and find one:
31 #if !defined(LIBSMBIOS_COMPILER_CONFIG) && !defined(LIBSMBIOS_NO_COMPILER_CONFIG) && !defined(LIBSMBIOS_NO_CONFIG)
33 #endif
34 // if we have a compiler config, include it now:
35 #ifdef LIBSMBIOS_COMPILER_CONFIG
36 # include LIBSMBIOS_COMPILER_CONFIG
37 #endif
38 
39 // if we don't have a std library config set, try and find one:
40 #if !defined(LIBSMBIOS_STDLIB_CONFIG) && !defined(LIBSMBIOS_NO_STDLIB_CONFIG) && !defined(LIBSMBIOS_NO_CONFIG)
42 #endif
43 // if we have a std library config, include it now:
44 #ifdef LIBSMBIOS_STDLIB_CONFIG
45 # include LIBSMBIOS_STDLIB_CONFIG
46 #endif
47 
48 // if we don't have a platform config set, try and find one:
49 #if !defined(LIBSMBIOS_PLATFORM_CONFIG) && !defined(LIBSMBIOS_NO_PLATFORM_CONFIG) && !defined(LIBSMBIOS_NO_CONFIG)
51 #endif
52 // if we have a platform config, include it now:
53 #ifdef LIBSMBIOS_PLATFORM_CONFIG
54 # include LIBSMBIOS_PLATFORM_CONFIG
55 #endif
56 
57 // get config suffix code:
58 #include <smbios/config/suffix.hpp>
59 
60 #endif // LIBSMBIOS_CONFIG_H
61 
62 
63 
64 
65 
66 
67 
68 
69 
70 
71