diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 031a5de..473ef3d 100644 --- a/configure.ac +++ b/configure.ac @@ -114,6 +114,13 @@ AC_ARG_WITH(phonebook, AC_HELP_STRING([--with-phonebook=DRIVER], [select phonebo fi ]) +if (test "${phonebook_driver}" = "dummy"); then + PKG_CHECK_MODULES(LIBICAL, libical, dummy=yes, + AC_MSG_ERROR(libical is required)) + AC_SUBST(LIBICAL_CFLAGS) + AC_SUBST(LIBICAL_LIBS) +fi + if (test "${phonebook_driver}" = "ebook"); then AC_DEFINE(NEED_THREADS, 1, [Define if threading support is required]) |