From: Lars Gullik Bjønnes Date: Sun, 5 Mar 2006 20:49:09 +0000 (+0000) Subject: Use the correct nullstream.hpp. X-Git-Tag: 1.6.10~13547 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=aa9da4736944ef43d6e21ae58c8a0f3c3cc5ee5a;p=features.git Use the correct nullstream.hpp. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13301 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index c9634c15e4..c6512a8bf9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2006-03-05 Lars Gullik Bjønnes + + * pch.h: + * support/pch.h: + * support/debugstream.h: Use the correct nullstream. + 2006-02-26 Georg Baum * text3.C (mathDispatch): fix math inset creation from string (bug 2315) diff --git a/src/pch.h b/src/pch.h index cac89198fa..b2c41405aa 100644 --- a/src/pch.h +++ b/src/pch.h @@ -17,7 +17,14 @@ #include #include #include -#include +#include + +#if BOOST_VERSION < 103301 +# include +#else +# include +#endif + #include #include #include diff --git a/src/support/debugstream.h b/src/support/debugstream.h index c41d4d94b1..47ab04aa8d 100644 --- a/src/support/debugstream.h +++ b/src/support/debugstream.h @@ -14,7 +14,13 @@ #include -#include +#include + +#if BOOST_VERSION < 103301 +# include +#else +# include +#endif #ifdef DEBUG # define TEMPORARY_DEBUG_MACRO DEBUG diff --git a/src/support/pch.h b/src/support/pch.h index df68682721..6b2f9b7f64 100644 --- a/src/support/pch.h +++ b/src/support/pch.h @@ -10,7 +10,14 @@ #include #include #include -#include +#include + +#if BOOST_VERSION < 103301 +# include +#else +# include +#endif + #include #include