diff options
author | OBATA Akio <obache@wizdas.com> | 2020-08-19 14:00:20 +0900 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-09-27 19:06:55 +0200 |
commit | bbe1b42cbbc7293041a83b154f969792a2592510 (patch) | |
tree | 7b70d04adacaacf071f7db37cb7f9e4915916d96 /tdespell2 | |
parent | 2706c5674eb1ea3fffdca4d8c3edb3b25335e731 (diff) | |
download | tdelibs-bbe1b42cbbc7293041a83b154f969792a2592510.tar.gz tdelibs-bbe1b42cbbc7293041a83b154f969792a2592510.zip |
Add the ability to detect ispell lib directory
Check LIBDIR ispell compile option and use only it for ispell lib directory
if found.
Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'tdespell2')
-rw-r--r-- | tdespell2/plugins/ispell/ispell_checker.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tdespell2/plugins/ispell/ispell_checker.cpp b/tdespell2/plugins/ispell/ispell_checker.cpp index d21b8374b..d3dd324d3 100644 --- a/tdespell2/plugins/ispell/ispell_checker.cpp +++ b/tdespell2/plugins/ispell/ispell_checker.cpp @@ -54,6 +54,9 @@ typedef struct str_ispell_map } IspellMap; static const char *ispell_dirs [] = { +#ifdef ISPELL_LIBDIR + ISPELL_LIBDIR, +#else "/usr/" SYSTEM_LIBDIR "/ispell", "/usr/lib/ispell", "/usr/local/" SYSTEM_LIBDIR "/ispell", @@ -61,6 +64,7 @@ static const char *ispell_dirs [] = { "/usr/local/share/ispell", "/usr/share/ispell", "/usr/pkg/lib", +#endif 0 }; static const IspellMap ispell_map [] = { |