Small changes to be able to compile on RH7.1 with pspell and included string.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2073 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2001-05-30 15:09:31 +00:00
parent 83acbbd523
commit a58ca02d24
4 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-05-30 Juergen Vigna <jug@sad.it>
* boost/config.hpp: change include of <string> to "LString.h".
2001-05-29 Lars Gullik Bjønnes <larsbj@birdstep.com>
* boost/utility.hpp: update

View File

@ -236,7 +236,7 @@
# define BOOST_NO_AUTO_PTR
# endif
# if __GNUC__ == 2 && __GNUC_MINOR__ <= 97
# include <string> // not sure this is the right way to do this -JGS
# include "LString.h" // not sure this is the right way to do this -JGS
# if defined(__BASTRING__) && !defined(__GLIBCPP__) && !defined(_CXXRT_STD) && !defined(__SGI_STL) // need to ask Dietmar about this -JGS
// this should only detect the stdlibc++ that ships with gcc, and
// not any replacements that may be installed...

View File

@ -1,3 +1,9 @@
2001-05-30 Juergen Vigna <jug@sad.it>
* spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
to check pspell I add this as default as I now have new pspell
libraries and they seem to use this.
2001-05-30 Lars Gullik Bjønnes <larsbj@birdstep.com>
* text2.C (CutSelection): make the cursor valid before the call to

View File

@ -66,6 +66,7 @@
#include "support/lstrings.h"
#ifdef USE_PSPELL
#define USE_ORIGINAL_MANAGER_FUNCS 1
# include <pspell/pspell.h>
#endif