diff options
| author | Sam Varshavchik | 2022-03-23 21:31:42 -0400 |
|---|---|---|
| committer | Sam Varshavchik | 2022-03-23 21:31:42 -0400 |
| commit | 9d0d19f77c6bfde4dc097fad981b1acff30068fe (patch) | |
| tree | 75b808b6b9549f857dfd64cefb7e2ae33dbcb2ba | |
| parent | af1ba882028706941de5b9d791c74bb0f84027e5 (diff) | |
| download | courier-libs-9d0d19f77c6bfde4dc097fad981b1acff30068fe.tar.bz2 | |
Search for ispell or aspell.
| -rw-r--r-- | sqwebmail/ChangeLog | 4 | ||||
| -rw-r--r-- | sqwebmail/configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sqwebmail/ChangeLog b/sqwebmail/ChangeLog index 7f50a5b..18aab74 100644 --- a/sqwebmail/ChangeLog +++ b/sqwebmail/ChangeLog @@ -1,3 +1,7 @@ +2022-03-23 Sam Varshavchik <mrsam@courier-mta.com> + + * configure.ac: Search for either "ispell" or "aspell". + 2022-01-17 Sam Varshavchik <mrsam@courier-mta.com> * maildir.c (maildir_checknew): use maildir_getnew. diff --git a/sqwebmail/configure.ac b/sqwebmail/configure.ac index b96d606..1f5e2dc 100644 --- a/sqwebmail/configure.ac +++ b/sqwebmail/configure.ac @@ -98,7 +98,7 @@ fi AC_ARG_WITH(ispell, [ --without-ispell Do not compile ispell support --with-ispell=prog Pathname to ispell (if not in default path)], - ispell="$withval", [ AC_PATH_PROG(ispell, ispell, N, $LPATH) ] ) + ispell="$withval", [ AC_PATH_PROGS(ispell, ispell aspell, N, $LPATH) ] ) case $ispell in "/"*) |
