fix a couple of pch.h files because of a gcc pch bug

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8965 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2004-08-30 00:39:40 +00:00
parent c5186dcb4d
commit c2df578151
4 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2004-08-30 Lars Gullik Bjonnes <larsbj@gullik.net>
* pch.h: do not use include boost/format.hpp, multiple symbols
will result (gcc bug)
2004-08-23 José Matos <jamatos@lyx.org> 2004-08-23 José Matos <jamatos@lyx.org>
* bufferparams.C (readToken): fix reading of the author field. * bufferparams.C (readToken): fix reading of the author field.
@ -57,7 +63,7 @@
* lyxlex.C (getString): fix comment, buffer::readBody is now * lyxlex.C (getString): fix comment, buffer::readBody is now
buffer:readDocument. buffer:readDocument.
* tex-strings.C (string_papersize): Default -> default, * tex-strings.C (string_papersize): Default -> default,
Custom -> custom, for consistency with other options. Custom -> custom, for consistency with other options.

View File

@ -6,7 +6,7 @@
#include <boost/crc.hpp> #include <boost/crc.hpp>
#include <boost/cregex.hpp> #include <boost/cregex.hpp>
#include <boost/current_function.hpp> #include <boost/current_function.hpp>
#include <boost/format.hpp> // #include <boost/format.hpp> // mult def symbols problem (_1, _2 etc)
#include <boost/function/function0.hpp> #include <boost/function/function0.hpp>
#include <boost/function.hpp> #include <boost/function.hpp>
#include <boost/iterator/indirect_iterator.hpp> #include <boost/iterator/indirect_iterator.hpp>

View File

@ -1,3 +1,8 @@
2004-08-30 Lars Gullik Bjonnes <larsbj@gullik.net>
* pch.h: do not use include boost/format.hpp, multiple symbols
will result (gcc bug)
2004-08-15 Lars Gullik Bjonnes <larsbj@gullik.net> 2004-08-15 Lars Gullik Bjonnes <larsbj@gullik.net>
* pch.h: new file * pch.h: new file

View File

@ -1,10 +1,10 @@
// -*- C++ -*-
#include <config.h> #include <config.h>
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <boost/crc.hpp> #include <boost/crc.hpp>
#include <boost/format.hpp> // #include <boost/format.hpp> // mult def symbols problem (_1,_2 etc)
#include <boost/function/function0.hpp> #include <boost/function/function0.hpp>
#include <boost/iterator/indirect_iterator.hpp>
#include <boost/regex.hpp> #include <boost/regex.hpp>
#include <boost/scoped_array.hpp> #include <boost/scoped_array.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>