filters
aconf.h
00001 /* 00002 * aconf2.h 00003 * 00004 * This gets included by aconf.h, and contains miscellaneous global 00005 * settings not directly controlled by autoconf. This is a separate 00006 * file because otherwise the configure script will munge any 00007 * #define/#undef constructs. 00008 * 00009 * Copyright 2002 Glyph & Cog, LLC 00010 */ 00011 00012 /* for KWord Importer */ 00013 #include "config.h" 00014 00015 #ifndef ACONF2_H 00016 #define ACONF2_H 00017 00018 /* 00019 * This controls the use of the interface/implementation pragmas. 00020 */ 00021 #ifdef __GNUC__ 00022 #define USE_GCC_PRAGMAS 00023 #endif 00024 /* There is a bug in the version of gcc which ships with MacOS X 10.2 */ 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 #endif