diff --git a/boost/ChangeLog b/boost/ChangeLog index 4723234f84..499ffb0d8d 100644 --- a/boost/ChangeLog +++ b/boost/ChangeLog @@ -1,3 +1,7 @@ +2003-03-31 Adrian Bunk + + * boost/integer_traits.hpp: compilation fix for NetBSD + 2003-02-20 Jean-Marc Lasgouttes * boost/regex/detail/regex_match.hpp (string_compare): do not diff --git a/boost/boost/integer_traits.hpp b/boost/boost/integer_traits.hpp index 87ea0396aa..dba6f794ac 100644 --- a/boost/boost/integer_traits.hpp +++ b/boost/boost/integer_traits.hpp @@ -10,7 +10,7 @@ * software for any purpose. It is provided "as is" without express or * implied warranty. * - * $Id: integer_traits.hpp,v 1.7.2.2 2003/02/11 13:17:07 lasgouttes Exp $ + * $Id: integer_traits.hpp,v 1.7.2.3 2003/02/20 16:08:39 lasgouttes Exp $ * * Idea by Beman Dawes, Ed Brey, Steve Cleary, and Nathan Myers */ @@ -93,12 +93,12 @@ class integer_traits #elif defined(__BORLANDC__) || defined(__CYGWIN__) || defined(__MINGW32__) || (defined(__BEOS__) && defined(__GNUC__)) // No WCHAR_MIN and WCHAR_MAX, whar_t is short and unsigned: public detail::integer_traits_base -#elif (defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400)) || (defined __APPLE__) || (defined(__FreeBSD__) && defined(__GNUC__)) || (defined(__OpenBSD__) && defined(__GNUC__)) || (defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 3) && !defined(__SGI_STL_PORT)) +#elif (defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400)) || (defined __APPLE__) || (defined(__FreeBSD__) && defined(__GNUC__)) || (defined(__OpenBSD__) && defined(__GNUC__)) || (defined(__NetBSD__) && defined(__GNUC__)) || (defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 3) && !defined(__SGI_STL_PORT)) // No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as int. // - SGI MIPSpro with native library // - gcc 3.x on HP-UX // - Mac OS X with native library - // - gcc on FreeBSD + // - gcc on FreeBSD, OpenBSD and NetBSD public detail::integer_traits_base #elif defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 2) && !defined(__SGI_STL_PORT) // No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as unsigned int. diff --git a/status.13x b/status.13x index d8ee7a2610..934cc6cfdd 100644 --- a/status.13x +++ b/status.13x @@ -71,3 +71,5 @@ What's new - make automatic generation of autoscripts optional; this was annoying for patches. + +- fix building on NetBSD [bug #1007]