From: Jean-Marc Lasgouttes Date: Fri, 1 Jun 2001 14:22:39 +0000 (+0000) Subject: small compile fixes X-Git-Tag: 1.6.10~21207 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d9633987631d1143bae45ee85f0d17c6a8ce2d66;p=features.git small compile fixes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2084 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/boost/ChangeLog b/boost/ChangeLog index 3fce77cc9c..654a3449f7 100644 --- a/boost/ChangeLog +++ b/boost/ChangeLog @@ -1,3 +1,8 @@ +2001-06-01 Jean-Marc Lasgouttes + + * boost/config.hpp (BOOST_NO_LIMITS): fix the hack mentionned + below. + 2001-06-01 Lars Gullik Bjønnes * boost/utility.hpp: update diff --git a/boost/boost/config.hpp b/boost/boost/config.hpp index 4b975aa268..0cdb1e8c57 100644 --- a/boost/boost/config.hpp +++ b/boost/boost/config.hpp @@ -265,12 +265,12 @@ # define BOOST_NO_SLIST # define BOOST_NO_HASH # endif +# endif // LYX: begin # ifndef HAVE_LIMITS # define BOOST_NO_LIMITS # endif // LYX: end -# endif // Intel on Linux --------------------------------------------------------- @@ -301,6 +301,7 @@ #elif defined __DECCXX # define BOOST_NO_SLIST # define BOOST_NO_HASH +# define BOOST_NO_INCLASS_MEMBER_INITIALIZATION // Greenhills C++ -----------------------------------------------------------// diff --git a/src/cheaders/ChangeLog b/src/cheaders/ChangeLog index e69de29bb2..4998ac4c3c 100644 --- a/src/cheaders/ChangeLog +++ b/src/cheaders/ChangeLog @@ -0,0 +1,4 @@ +2001-06-01 Jean-Marc Lasgouttes + + * climits: new file + diff --git a/src/cheaders/climits b/src/cheaders/climits new file mode 100644 index 0000000000..1b29b3af01 --- /dev/null +++ b/src/cheaders/climits @@ -0,0 +1,7 @@ +// -*- C++ -*- forwarding header. +// This file is part of the GNU ANSI C++ Library. + +#ifndef __CLIMITS__ +#define __CLIMITS__ +#include +#endif