blob: 92b239ee221895742d7fa5e8bc45b30d390f417a (
plain)
1
2
3
4
5
6
7
8
|
AC_DEFUN([KBUGBUSTER_CHECK_KCAL],[HAVE_KCAL=0
KDE_CHECK_HEADER(libkcal/resourcecalendar.h,HAVE_KCAL=1,
AC_MSG_WARN([Unable to find libkcal. The Bugzilla todo list \
resource for KOrganizer won't be compiled.]))
AM_CONDITIONAL(include_kcalresource, test "$HAVE_KCAL" = 1)
])
KBUGBUSTER_CHECK_KCAL
|