[v3] add uselocale hooks

Jakub Jelinek jakub@redhat.com
Sat Mar 23 01:01:00 GMT 2002


On Fri, Mar 22, 2002 at 05:53:20PM -0800, Benjamin Kosnik wrote:
> 2002-03-22  Benjamin Kosnik  <bkoz@redhat.com>
> 
> 	* config/locale/gnu/messages_members.h: Add __uselocale bits.
> 	* config/locale/gnu/messages_members.cc: Same.
> 	* config/locale/gnu/time_members.cc: Same.
> 	
> ! #if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2

Shouldn't this be actually:
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
?
Otherwise, glibc 3.[012] will not be handled.

	Jakub



More information about the Gcc-patches mailing list