forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1460600: Remove unsupported --enable-system-hunspell flag. r=glan…
…dium Our bundled Hunspell now significantly differs from upstream Hunspell. Most importantly, it supports loading dictionaries from jar: URIs, which is now a requirement for loading bundled and extension dictionaries. This means that system Hunspell libraries are no longer compatible with our spell checker code. We should remove the option to use them so that users don't fall into the trap of trying to use them. MozReview-Commit-ID: 2ihJe6YOnGf --HG-- extra : rebase_source : ceb091b9475a2b101156405a02a60015fc36da17
- Loading branch information
Showing
9 changed files
with
9 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,6 @@ | ||
#ifndef HUNSPELL_VISIBILITY_H_ | ||
#define HUNSPELL_VISIBILITY_H_ | ||
|
||
#if defined(HUNSPELL_STATIC) | ||
# define LIBHUNSPELL_DLL_EXPORTED | ||
#elif defined(_MSC_VER) | ||
# if defined(BUILDING_LIBHUNSPELL) | ||
# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllexport) | ||
# else | ||
# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport) | ||
# endif | ||
#elif defined(BUILDING_LIBHUNSPELL) && 1 | ||
# define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default"))) | ||
#else | ||
# define LIBHUNSPELL_DLL_EXPORTED | ||
#endif | ||
#define LIBHUNSPELL_DLL_EXPORTED | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters