00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef ACONF2_H
00013 #define ACONF2_H
00014
00015
00016
00017
00018 #ifdef __GNUC__
00019 #define USE_GCC_PRAGMAS
00020 #endif
00021
00022 #if defined(__APPLE__) && defined(__MACH__)
00023 # include <AvailabilityMacros.h>
00024 #endif
00025 #ifdef MAC_OS_X_VERSION_MAX_ALLOWED
00026 # if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2
00027 # undef USE_GCC_PRAGMAS
00028 # endif
00029 #endif
00030
00031
00032
00033
00034 #if defined(_WIN32) && !defined(WIN32)
00035 # define WIN32
00036 #endif
00037
00038 #endif