From: Enrico Forestieri Date: Wed, 7 Sep 2011 21:37:25 +0000 (+0000) Subject: Fix compile error with gcc 4.5.3 when using the included mythes library: X-Git-Tag: 2.0.2~219 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0be0ab820c7b986e202b61a3a9d1afc77c334cf6;p=features.git Fix compile error with gcc 4.5.3 when using the included mythes library: ../../src/support/mythes/mythes.hxx:25:9: error: `FILE' does not name a type ../../src/support/mythes/mythes.hxx:55:22: error: `FILE' has not been declared git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39630 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Thesaurus.cpp b/src/Thesaurus.cpp index 5600e53380..fcec80bef5 100644 --- a/src/Thesaurus.cpp +++ b/src/Thesaurus.cpp @@ -26,6 +26,7 @@ #ifdef USE_EXTERNAL_MYTHES #include MYTHES_H_LOCATION #else +#include #include "support/mythes/mythes.hxx" #endif diff --git a/status.20x b/status.20x index 0934c1f35b..b4d4aaa3f8 100644 --- a/status.20x +++ b/status.20x @@ -93,3 +93,5 @@ What's new * BUILD/INSTALLATION + +- Fix compile error with gcc 4.5.3 when using the included mythes library.