summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-10-13 13:47:48 +0000
committerMamoru Komachi <usata@gentoo.org>2004-10-13 13:47:48 +0000
commita9658aa1ff60813c48bb8f09b00fa6dbc21c266f (patch)
tree8d003579a8c364bda23dd5656867f5e2ab3ffe93 /app-office/lyx/files
parentVersion bump (Manifest recommit) (diff)
downloadgentoo-2-a9658aa1ff60813c48bb8f09b00fa6dbc21c266f.tar.gz
gentoo-2-a9658aa1ff60813c48bb8f09b00fa6dbc21c266f.tar.bz2
gentoo-2-a9658aa1ff60813c48bb8f09b00fa6dbc21c266f.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.patch17
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>