From e5128e1124efa814d8c65b4797025b1a15c6b250 Mon Sep 17 00:00:00 2001 From: Funda Wang Date: Mon, 11 May 2026 12:37:35 +0800 Subject: [PATCH] support libical 4.0 --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 52de7d6..1cdd551 100644 --- a/configure.ac +++ b/configure.ac @@ -306,7 +306,9 @@ fi AC_ARG_ENABLE(obex, AS_HELP_STRING([--disable-obex], [disable OBEX profile support]), [enable_obex=${enableval}]) if (test "${enable_obex}" != "no"); then - PKG_CHECK_MODULES(ICAL, libical) + PKG_CHECK_MODULES(ICAL, [libicalvcal >= 4.0.0], [], + [PKG_CHECK_MODULES(ICAL, [libical])] + ) fi AM_CONDITIONAL(OBEX, test "${enable_obex}" != "no") -- 2.47.3