diff options
author | 2004-10-13 13:47:48 +0000 | |
---|---|---|
committer | 2004-10-13 13:47:48 +0000 | |
commit | 20ddbe0ca688431d0578878f097bdacd5c2a8d68 (patch) | |
tree | affb2a79844e9910c9d214e095345f79f6424f21 /app-office/lyx/files | |
parent | Version bump (diff) | |
download | historical-20ddbe0ca688431d0578878f097bdacd5c2a8d68.tar.gz historical-20ddbe0ca688431d0578878f097bdacd5c2a8d68.tar.bz2 historical-20ddbe0ca688431d0578878f097bdacd5c2a8d68.zip |
Added a patch to fix compile problem with gcc 3.4.2. Thanks to Ed Catmur <ed@catmur.co.uk>, closing bug #67131.
Diffstat (limited to 'app-office/lyx/files')
-rw-r--r-- | app-office/lyx/files/lyx-1.3.5-boost.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app-office/lyx/files/lyx-1.3.5-boost.patch b/app-office/lyx/files/lyx-1.3.5-boost.patch new file mode 100644 index 000000000000..b3fdf985f4cd --- /dev/null +++ b/app-office/lyx/files/lyx-1.3.5-boost.patch @@ -0,0 +1,17 @@ +=================================================================== +RCS file: /cvsroot/boost/boost/boost/format/feed_args.hpp,v +retrieving revision 1.10 +retrieving revision 1.11 +diff -u -r1.10 -r1.11 +--- boost/boost/boost/format/feed_args.hpp 2003/05/28 11:20:49 1.10 ++++ boost/boost/boost/format/feed_args.hpp 2003/08/27 03:24:41 1.11 +@@ -34,8 +34,7 @@ + + template<class Tr, class Ch> inline + void empty_buf(BOOST_IO_STD basic_ostringstream<Ch,Tr> & os) { +- static const std::basic_string<Ch, Tr> emptyStr; // avoids 2 cases ( "" and L"" ) +- os.str(emptyStr); ++ os.str( std::basic_string<Ch, Tr>() ); + } + + template<class Ch, class Tr> |