Yes, I meant preface.h.in not prefix.h :-) > Put this in Foundation.h > > #ifdef GS_EXCLUDE_COREFOUNDATION_HEADERS > #import "preface.h" > #else > #import <CoreFoundation/CoreFoundation.h> > #endif >
preface.h is always included (via GSVersionMacros.h and GSConfig.h). Not including it might break something.. I think you'd just want to do this: #ifndef GS_EXCLUDE_COREFOUNDATION_HEADERS #import <CoreFoundation/CoreFoundation.h> #endif -Eric _______________________________________________ Gnustep-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnustep-dev
