Hi,

a "forward-port" of a LyX 1.3.2 patch for bugzilla report #1007. I cannot test it but it looks fairly trivial.

http://bugzilla.lyx.org/show_bug.cgi?id=1007

Lars, please check and apply.

Thanks, Michael

Index: boost/ChangeLog
===================================================================
RCS file: /cvs/lyx/lyx-devel/boost/ChangeLog,v
retrieving revision 1.38
diff -a -u -r1.38 ChangeLog
--- boost/ChangeLog     2003/08/07 12:09:23     1.38
+++ boost/ChangeLog     2003/08/21 08:43:25
@@ -1,3 +1,7 @@
+2003-08-21  Michael Schmitt  <[EMAIL PROTECTED]>
+
+       * boost/integer_traits.hpp: fix compile error on NetBSD
+
 2003-08-07  Lars Gullik Bj�nnes  <[EMAIL PROTECTED]>
 
        * boost/config/user.hpp: do not use BOOST_NO_EXCEPTIONS here, that
Index: boost/boost/integer_traits.hpp
===================================================================
RCS file: /cvs/lyx/lyx-devel/boost/boost/integer_traits.hpp,v
retrieving revision 1.11
diff -a -u -r1.11 integer_traits.hpp
--- boost/boost/integer_traits.hpp      2003/08/07 12:09:23     1.11
+++ boost/boost/integer_traits.hpp      2003/08/21 08:43:25
@@ -99,13 +99,14 @@
 #elif (defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400))\
     || (defined __APPLE__)\
     || (defined(__OpenBSD__) && defined(__GNUC__))\
+    || (defined(__NetBSD__) && defined(__GNUC__))\
     || (defined(__FreeBSD__) && 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<wchar_t, INT_MIN, INT_MAX>
 #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.

Reply via email to