00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #define LIBSMBIOS_C_HAS_PRETTY_FUNCTION
00015 #define LIBSMBIOS_C_HAS_FUNCTION
00016 #define LIBSMBIOS_C_PACKED_ATTR __attribute__ ((packed))
00017 #define LIBSMBIOS_C_COMPILER "GNU C++ version " __VERSION__
00018 #define LIBSMBIOS_C_HAS_LONG_LONG
00019
00020
00021
00022 #if (__GNUC__ == 2) && (__GNUC_MINOR__ < 90)
00023 # error "GCC versions < 2.90 not supported"
00024 #endif
00025
00026
00027 #if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 4))
00028 # if defined(LIBSMBIOS_C_ASSERT_CONFIG)
00029 # error "Unknown compiler version - please run the configure tests and report the results"
00030 # else
00031 # warning "Unknown compiler version - please run the configure tests and report the results"
00032 # endif
00033 #endif
00034
00035