libsmbios_c library
get_config.h
Go to the documentation of this file.
1// Boost config.h 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.h 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_C_CONFIG_H
19#define LIBSMBIOS_C_CONFIG_H
20
21// if we don't have a user config, then use the default location:
22#if !defined(LIBSMBIOS_C_USER_CONFIG) && !defined(LIBSMBIOS_C_NO_USER_CONFIG)
23# define LIBSMBIOS_C_USER_CONFIG <smbios_c/config/user.h>
24#endif
25// include it first:
26#ifdef LIBSMBIOS_C_USER_CONFIG
27# include LIBSMBIOS_C_USER_CONFIG
28#endif
29
30// if we don't have a compiler config set, try and find one:
31#if !defined(LIBSMBIOS_C_COMPILER_CONFIG) && !defined(LIBSMBIOS_C_NO_COMPILER_CONFIG) && !defined(LIBSMBIOS_C_NO_CONFIG)
33#endif
34// if we have a compiler config, include it now:
35#ifdef LIBSMBIOS_C_COMPILER_CONFIG
36# include LIBSMBIOS_C_COMPILER_CONFIG
37#endif
38
39
40// if we don't have a platform config set, try and find one:
41#if !defined(LIBSMBIOS_C_PLATFORM_CONFIG) && !defined(LIBSMBIOS_C_NO_PLATFORM_CONFIG) && !defined(LIBSMBIOS_C_NO_CONFIG)
43#endif
44// if we have a platform config, include it now:
45#ifdef LIBSMBIOS_C_PLATFORM_CONFIG
46# include LIBSMBIOS_C_PLATFORM_CONFIG
47#endif
48
49// get config suffix code:
51
52#endif // LIBSMBIOS_C_CONFIG_H
53
54
55
56
57
58
59
60
61
62
63