On 13 September 2012 12:38, Paul Eggert <[email protected]> wrote: > Thanks. Do you happen to know whether (defined __APPLE__) > implies (defined __FreeBSD__)? If so, the following patch > should also work, and should be simpler. I'm asking because > I don't use either OS X or FreeBSD, normally.
__FreeBSD__ isn't going to be defined on OS X but we should both have the xlocale API; you can probably make the change below but change the test to (__APPLE__ && __MACH__) || __FreeBSD__. Someone else will have to test though as I don't have a Mac to try it. -Ed
