From ff4d146357020a0d1799ce118337bee4df6ac77c Mon Sep 17 00:00:00 2001 From: Chunyang Xu Date: Mon, 31 Oct 2016 19:23:48 +0800 Subject: [PATCH] Support Emacs 26 in configure.ac The version under development is now 26. I installed Emacs from source via Git recently, it gives: emacs-version => "26.0.50.2" --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e6d6bb4a..366c8b81 100644 --- a/configure.ac +++ b/configure.ac @@ -65,7 +65,7 @@ AS_IF([test "x$enable_mu4e" != "xno"], [ emacs_version="`$EMACS --version | head -1`" lispdir="${lispdir}/mu4e/" ]) - AS_CASE([$emacs_version],[*23*|*24*|*25*],[build_mu4e=yes], + AS_CASE([$emacs_version],[*23*|*24*|*25*|*26*],[build_mu4e=yes], [AC_WARN([emacs is too old to build mu4e (need emacs >= 23.x)])]) ]) AM_CONDITIONAL(BUILD_MU4E, test "x$build_mu4e" = "xyes")