00001 #ifndef FEATURES_H 00002 #define FEATURES_H 00003 00004 #include <config.h> 00005 #ifdef __GNUC__ 00006 # ifdef WIN32 00007 # include <_mingw.h> 00008 # define __GNUC_PREREQ(x,y) __MINGW_GNUC_PREREQ(x,y) 00009 # elif defined(__APPLE__) 00010 # define __GNUC_PREREQ(x,y) ((__GNUC__ > x) || ((__GNUC__ == x) && (__GNUC_MINOR >= y))) 00011 # else 00012 # include <features.h> 00013 # endif 00014 #endif 00015 00016 #endif // FEATURES_H 00017