Re: [patch] linux/{socket,stat}.h: change __GLIBC__ cruft to __KLIBC__

2008-01-02 Thread H. Peter Anvin
Mike Frysinger wrote: -#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) +#if defined(__KERNEL__) || defined(__KLIBC__) ... This changes the semantics from "!glibc" to "klibc". that's the point I'm a bit worried that such changes might break some of the other libc's people u

Re: [patch] linux/{socket,stat}.h: change __GLIBC__ cruft to __KLIBC__

2008-01-02 Thread Mike Frysinger
On Wednesday 02 January 2008, Adrian Bunk wrote: > On Wed, Jan 02, 2008 at 09:37:50AM -0500, Mike Frysinger wrote: > > The __GLIBC__ hacks were re-added to the headers because the klibc peeps > > want to be lazy. But rather than properly address things, they just > > wrongly left it as __GLIBC__.

Re: [patch] linux/{socket,stat}.h: change __GLIBC__ cruft to __KLIBC__

2008-01-02 Thread Adrian Bunk
On Wed, Jan 02, 2008 at 09:37:50AM -0500, Mike Frysinger wrote: > The __GLIBC__ hacks were re-added to the headers because the klibc peeps want > to be lazy. But rather than properly address things, they just wrongly left > it as __GLIBC__. This patch changes the __GLIBC__ cruft to __KLIBC__ so r