]> git.lyx.org Git - features.git/commitdiff
Small changes to be able to compile on RH7.1 with pspell and included string.
authorJürgen Vigna <jug@sad.it>
Wed, 30 May 2001 15:09:31 +0000 (15:09 +0000)
committerJürgen Vigna <jug@sad.it>
Wed, 30 May 2001 15:09:31 +0000 (15:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2073 a592a061-630c-0410-9148-cb99ea01b6c8

boost/ChangeLog
boost/boost/config.hpp
src/ChangeLog
src/spellchecker.C

index 423418b66e53fe0dc94ac04f2dc1592668b45fba..5fe53b9abf2b0df87fd39adb18433ccf944aff11 100644 (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
index 9b7ebb409b960a2d5d20067be2e0716c6425f21e..87538b6ebb086177760eb70003b9700471049a7d 100644 (file)
 #      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...
index ef0f770df854a6a5722e1409d3bb773b0bb396e1..2efc2e2c12c07cd379d9b47a0d0f59313ca0d03a 100644 (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
index 030cbc4aca68433c49e657f1a8f955e21bad3871..8348455a8215b6d10ec8dd177b77070aa2629ad5 100644 (file)
@@ -66,6 +66,7 @@
 #include "support/lstrings.h"
 
 #ifdef USE_PSPELL
+#define USE_ORIGINAL_MANAGER_FUNCS 1
 # include <pspell/pspell.h>
 #endif