]> git.lyx.org Git - lyx.git/blob - config/spell.m4
a13fb0a7babe18f8daab39dd9f337ab14bf5b885
[lyx.git] / config / spell.m4
1 # Macro to add for using aspell spellchecker libraries!     -*- sh -*-
2 # Only checks for "new" aspell, > 0.50
3 AC_DEFUN([CHECK_WITH_ASPELL],
4 [
5         lyx_use_aspell=true
6         AC_ARG_WITH(aspell, AC_HELP_STRING([--without-aspell],[do not check for ASpell library]))
7         test "$with_aspell" = "no" && lyx_use_aspell=false
8
9         if $lyx_use_aspell ; then
10                 AC_CHECK_HEADERS(aspell.h,
11                         [lyx_use_aspell=true; break;],
12                         [lyx_use_aspell=false])
13                 AC_CHECK_LIB(aspell, new_aspell_config, LIBS="-laspell $LIBS", lyx_use_aspell=false)
14
15                 AC_MSG_CHECKING([whether to use aspell])
16                 if $lyx_use_aspell ; then
17                         AC_MSG_RESULT(yes)
18                         AC_DEFINE(USE_ASPELL, 1, [Define as 1 to use the aspell library])
19                         lyx_flags="$lyx_flags use-aspell"
20                 else
21                         AC_MSG_RESULT(no)
22                 fi
23         fi
24         ])
25
26 AC_DEFUN([LYX_HAVE_ENCHANT2],
27 [
28   AC_MSG_CHECKING([whether enchant is version 2.x at least])
29   save_CXXFLAGS=$CXXFLAGS
30   CXXFLAGS="$ENCHANT_CFLAGS $AM_CXXFLAGS $CXXFLAGS"
31
32   AC_TRY_COMPILE([#include <enchant++.h>],
33       [enchant::Broker broker;],
34       [AC_MSG_RESULT(yes)
35        AC_DEFINE(HAVE_ENCHANT2, 1, [Define to 1 if enchant 2.x is detected])
36       ],
37       [AC_MSG_RESULT(no)])
38   CXXFLAGS=$save_CXXFLAGS
39 ])
40
41 AC_DEFUN([CHECK_WITH_ENCHANT],
42 [
43         lyx_use_enchant=true
44         AC_ARG_WITH(enchant, AC_HELP_STRING([--without-enchant],[do not check for Enchant library]))
45         test "$with_enchant" = "no" && lyx_use_enchant=false
46
47         if $lyx_use_enchant; then
48                 PKG_CHECK_MODULES([ENCHANT], [enchant-2], [],
49                     [PKG_CHECK_MODULES([ENCHANT], [enchant], [],
50                         [lyx_use_enchant=false])])
51                 AC_MSG_CHECKING([whether to use enchant])
52                 if $lyx_use_enchant ; then
53                     AC_MSG_RESULT(yes)
54                     AC_DEFINE(USE_ENCHANT, 1, [Define as 1 to use the enchant library])
55                     LYX_HAVE_ENCHANT2
56                     lyx_flags="$lyx_flags use-enchant"
57                 else
58                     AC_MSG_RESULT(no)
59                 fi
60         fi
61     ])
62
63 AC_DEFUN([LYX_HAVE_HUNSPELL_CXXABI],
64 [
65   AC_MSG_CHECKING([whether hunspell C++ (rather than C) ABI is provided])
66   save_CXXFLAGS=$CXXFLAGS
67   CXXFLAGS="$ENCHANT_CFLAGS $AM_CXXFLAGS $CXXFLAGS"
68
69 # in the C++ ABI, stem() returns a vector, in the C ABI, it returns an int
70   AC_TRY_COMPILE([#include <hunspell/hunspell.hxx>],
71       [Hunspell sp("foo", "bar");
72        int i = sp.stem("test").size();],
73       [AC_MSG_RESULT(yes)
74        AC_DEFINE(HAVE_HUNSPELL_CXXABI, 1, [Define to 1 if hunspell C++ (rather than C) ABI is detected])
75       ],
76       [AC_MSG_RESULT(no)])
77   CXXFLAGS=$save_CXXFLAGS
78 ])
79
80 # Macro to add for using hunspell spellchecker libraries!     -*- sh -*-
81 AC_DEFUN([CHECK_WITH_HUNSPELL],
82 [
83         lyx_use_hunspell=true
84         AC_ARG_WITH(hunspell, AC_HELP_STRING([--without-hunspell],[do not check for Hunspell library]))
85         test "$with_hunspell" = "no" && lyx_use_hunspell=false
86
87         if $lyx_use_hunspell ; then
88         PKG_CHECK_MODULES([HUNSPELL], [hunspell], [], [
89                   AC_CHECK_HEADERS(hunspell/hunspell.hxx,
90                     [lyx_use_hunspell=true; break;],
91                          [lyx_use_hunspell=false])
92                          AC_CHECK_LIB(hunspell, main, LIBS="-lhunspell $LIBS", lyx_use_hunspell=false)
93                 ])
94         AC_MSG_CHECKING([whether to use hunspell])
95         if $lyx_use_hunspell ; then
96                 AC_MSG_RESULT(yes)
97                 AC_DEFINE(USE_HUNSPELL, 1, [Define as 1 to use the hunspell library])
98                 lyx_flags="$lyx_flags use-hunspell"
99         else
100                 AC_MSG_RESULT(no)
101         fi
102     fi
103                 LYX_HAVE_HUNSPELL_CXXABI
104     ])
105
106 dnl Usage: LYX_USE_INCLUDED_HUNSPELL : select if the included hunspell should
107 dnl        be used.
108 AC_DEFUN([LYX_USE_INCLUDED_HUNSPELL],[
109         AC_MSG_CHECKING([whether to use included hunspell library])
110         AC_ARG_WITH(included-hunspell,
111                 [AC_HELP_STRING([--with-included-hunspell], [use the hunspell lib supplied with LyX instead of the system one])],
112                 [lyx_cv_with_included_hunspell=$withval],
113                 [lyx_cv_with_included_hunspell=no])
114         AM_CONDITIONAL(USE_INCLUDED_HUNSPELL, test x$lyx_cv_with_included_hunspell = xyes)
115         AC_MSG_RESULT([$lyx_cv_with_included_hunspell])
116         if test x$lyx_cv_with_included_hunspell = xyes ; then
117                 lyx_included_libs="$lyx_included_libs hunspell"
118                 HUNSPELL_CFLAGS='-I$(top_srcdir)/3rdparty/hunspell/1.6.2/src'
119                 HUNSPELL_LIBS='$(top_builddir)/3rdparty/hunspell/liblyxhunspell.a'
120                 AC_SUBST(HUNSPELL_CFLAGS)
121                 AC_SUBST(HUNSPELL_LIBS)
122         fi
123         ])
124
125
126 ### Check if we want spell libraries, prefer new aspell or hunspell
127 AC_DEFUN([LYX_CHECK_SPELL_ENGINES],
128 [
129         LYX_USE_INCLUDED_HUNSPELL
130         if test x$lyx_cv_with_included_hunspell = xyes ; then
131 dnl the user wanted to use the included hunspell, so do not check for external hunspell
132                 lyx_use_hunspell=true
133                 AC_DEFINE(USE_HUNSPELL, 1, [Define as 1 to use the hunspell library])
134                 AC_DEFINE(HAVE_HUNSPELL_CXXABI, 1, [Define to 1 if hunspell C++ (rather than C) ABI is detected])
135                 lyx_flags="$lyx_flags use-hunspell"
136         else
137                 CHECK_WITH_HUNSPELL
138         fi
139         CHECK_WITH_ASPELL
140         CHECK_WITH_ENCHANT
141
142         AM_CONDITIONAL(USE_ASPELL, $lyx_use_aspell)
143         AM_CONDITIONAL(USE_ENCHANT, $lyx_use_enchant)
144         AM_CONDITIONAL(USE_HUNSPELL, $lyx_use_hunspell)
145         ])
146