Quote from: dkaparis on August 11, 2010, 11:00:16 PMThere is this piece of code in headers.h:
#ifdef WXMAC_OSX #define WXMAC 1 #define WXOSX 1 #define BSD 1 #endif #endif
That code was a bad idea anyway, I’m deleting it. Any Mac code should only use WXMAC_OSX, not WXMAC or WXOSX, and we should stop using BSD.
Quote #if (defined(unix) || defined(unix)) && !defined(USG) #include <sys/param.h> #endif
Will that definitely cause BSD to be defined on Mac?