diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8f5ce9ea877..43c80a24d4f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2002-03-25 Benjamin Kosnik + Jakub Jelinek + + * config/locale/gnu/messages_members.h: Correct conditional. + * config/locale/gnu/messages_members.cc: Same. + * config/locale/gnu/time_members.cc: Same. + 2002-03-25 Ulrich Weigand Paolo Carlini @@ -95,7 +102,7 @@ * configure.in: Add comments pointing the way for autoconf 2.5x. * aclocal.m4, config.h.in, configure: Regenerate. -2002-03-15 Philipp Thomas +2002-03-18 Philipp Thomas * include/backward/hash_map.h: hash, hashtable, hash_map and hash_multimap are in namespace __gnu_cxx. diff --git a/libstdc++-v3/config/locale/gnu/messages_members.cc b/libstdc++-v3/config/locale/gnu/messages_members.cc index 326bee738f1..28702c2bc79 100644 --- a/libstdc++-v3/config/locale/gnu/messages_members.cc +++ b/libstdc++-v3/config/locale/gnu/messages_members.cc @@ -42,7 +42,7 @@ namespace std string messages::do_get(catalog, int, int, const string& __dfault) const { -#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2 +#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) __c_locale __old = __uselocale(_M_c_locale_messages); const char* __msg = const_cast(gettext(__dfault.c_str())); __uselocale(__old); diff --git a/libstdc++-v3/config/locale/gnu/messages_members.h b/libstdc++-v3/config/locale/gnu/messages_members.h index ef59fd5772b..d664d3975c8 100644 --- a/libstdc++-v3/config/locale/gnu/messages_members.h +++ b/libstdc++-v3/config/locale/gnu/messages_members.h @@ -59,7 +59,7 @@ messages<_CharT>::do_get(catalog, int, int, const string_type& __dfault) const { -#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2 +#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) __c_locale __old = __uselocale(_M_c_locale_messages); char* __msg = gettext(_M_convert_to_char(__dfault)); __uselocale(__old); diff --git a/libstdc++-v3/config/locale/gnu/time_members.cc b/libstdc++-v3/config/locale/gnu/time_members.cc index 8f7665e14c7..124a91787c1 100644 --- a/libstdc++-v3/config/locale/gnu/time_members.cc +++ b/libstdc++-v3/config/locale/gnu/time_members.cc @@ -44,7 +44,7 @@ namespace std _M_put_helper(char* __s, size_t __maxlen, const char* __format, const tm* __tm) const { -#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2 +#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) if (_M_c_locale_timepunct) __strftime_l(__s, __maxlen, _M_c_locale_timepunct, __format, __tm); else @@ -188,7 +188,7 @@ namespace std _M_put_helper(wchar_t* __s, size_t __maxlen, const wchar_t* __format, const tm* __tm) const { -#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2 +#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) if (_M_c_locale_timepunct) __wcsftime_l(__s, __maxlen, _M_c_locale_timepunct, __format, __tm); else