mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
(Michael Schmitt) Enable compilation on NetBSD.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7601 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b2652e0fe6
commit
573ffafc59
@ -1,3 +1,7 @@
|
|||||||
|
2003-08-21 Michael Schmitt <michael.schmitt@teststep.org>
|
||||||
|
|
||||||
|
* boost/integer_traits.hpp: fix compile error on NetBSD
|
||||||
|
|
||||||
2003-08-07 Lars Gullik Bjønnes <larsbj@gullik.net>
|
2003-08-07 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
|
||||||
* boost/config/user.hpp: do not use BOOST_NO_EXCEPTIONS here, that
|
* boost/config/user.hpp: do not use BOOST_NO_EXCEPTIONS here, that
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* software for any purpose. It is provided "as is" without express or
|
* software for any purpose. It is provided "as is" without express or
|
||||||
* implied warranty.
|
* implied warranty.
|
||||||
*
|
*
|
||||||
* $Id: integer_traits.hpp,v 1.22 2002/12/27 16:51:52 beman_dawes Exp $
|
* $Id: integer_traits.hpp,v 1.11 2003/08/07 12:09:23 larsbj Exp $
|
||||||
*
|
*
|
||||||
* Idea by Beman Dawes, Ed Brey, Steve Cleary, and Nathan Myers
|
* Idea by Beman Dawes, Ed Brey, Steve Cleary, and Nathan Myers
|
||||||
*/
|
*/
|
||||||
@ -99,13 +99,14 @@ class integer_traits<wchar_t>
|
|||||||
#elif (defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400))\
|
#elif (defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400))\
|
||||||
|| (defined __APPLE__)\
|
|| (defined __APPLE__)\
|
||||||
|| (defined(__OpenBSD__) && defined(__GNUC__))\
|
|| (defined(__OpenBSD__) && defined(__GNUC__))\
|
||||||
|
|| (defined(__NetBSD__) && defined(__GNUC__))\
|
||||||
|| (defined(__FreeBSD__) && defined(__GNUC__))\
|
|| (defined(__FreeBSD__) && defined(__GNUC__))\
|
||||||
|| (defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 3) && !defined(__SGI_STL_PORT))
|
|| (defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 3) && !defined(__SGI_STL_PORT))
|
||||||
// No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as int.
|
// No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as int.
|
||||||
// - SGI MIPSpro with native library
|
// - SGI MIPSpro with native library
|
||||||
// - gcc 3.x on HP-UX
|
// - gcc 3.x on HP-UX
|
||||||
// - Mac OS X with native library
|
// - 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>
|
public detail::integer_traits_base<wchar_t, INT_MIN, INT_MAX>
|
||||||
#elif defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 2) && !defined(__SGI_STL_PORT)
|
#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.
|
// No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as unsigned int.
|
||||||
|
Loading…
Reference in New Issue
Block a user