diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-20 08:11:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-20 07:34:27 +0000 |
commit | f255c3e96e25a43a4724d80287554d892d7ffd70 (patch) | |
tree | d254a6911479fcea98ec5c04569951219bb68501 /helpcompiler | |
parent | 60b6b1eae563c727160724a8671844bf8136f5d5 (diff) |
[API CHANGE] Remove HAVE_GCC_VISIBILITY_FEATURE, always true
* GCC documents -fvisibility at least as far back as the GCC 4.0 online
documentation at
<https://gcc.gnu.org/onlinedocs/gcc-4.0.4/gcc/Code-Gen-Options.html>.
* For external code, odk/settings/settings.mk unconditionally set
HAVE_GCC_VISIBILITY_FEATURE for all platforms other than Windows.
Make this a fatal configure error for now. The check should be removed
completely after LO 5.3 branch-off.
Change-Id: I1de415b6ed1591e0a7b6640ece861b6f0ef74112
Reviewed-on: https://gerrit.libreoffice.org/29073
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'helpcompiler')
-rw-r--r-- | helpcompiler/source/LuceneHelper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpcompiler/source/LuceneHelper.hxx b/helpcompiler/source/LuceneHelper.hxx index 3d7ad35fa090..de7501e65040 100644 --- a/helpcompiler/source/LuceneHelper.hxx +++ b/helpcompiler/source/LuceneHelper.hxx @@ -15,14 +15,14 @@ #pragma warning(disable : 4068 4263 4264 4266) #endif -#if defined(__GNUC__) && defined(HAVE_GCC_VISIBILITY_FEATURE) +#if defined(__GNUC__) # pragma GCC visibility push (default) #endif #include <CLucene.h> #include <CLucene/analysis/LanguageBasedAnalyzer.h> -#if defined(__GNUC__) && defined(HAVE_GCC_VISIBILITY_FEATURE) +#if defined(__GNUC__) # pragma GCC visibility pop #endif |