From 9d0d19f77c6bfde4dc097fad981b1acff30068fe Mon Sep 17 00:00:00 2001 From: Sam Varshavchik Date: Wed, 23 Mar 2022 21:31:42 -0400 Subject: Search for ispell or aspell. --- sqwebmail/ChangeLog | 4 ++++ sqwebmail/configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + + * configure.ac: Search for either "ispell" or "aspell". + 2022-01-17 Sam Varshavchik * 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 "/"*) -- cgit v1.2.3