summaryrefslogtreecommitdiff
path: root/res/res_calendar_caldav.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2010-05-28 22:54:03 +0000
committerTerry Wilson <twilson@digium.com>2010-05-28 22:54:03 +0000
commit9a2f04ce26cb6a6a10245af34a781b6150ba30a8 (patch)
tree4598231a4295feb0a052960a44db2722a1f16dbe /res/res_calendar_caldav.c
parent2da88f1977295c7945a2cd3a5c6a79246439ccd0 (diff)
Fix ical library handling (again)
Newer versions of libical (which we require) store the header file in a libical/ subfolder and include an ical.h file that does a #warning for deprecation and then #includes <libical/ical.h>. Since we now test for libical/ical.h, we can change the #includes back to <libical/ical.h> and remove the test which specifically adds /usr/include/libical as an include directory. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@266386 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_calendar_caldav.c')
-rw-r--r--res/res_calendar_caldav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_calendar_caldav.c b/res/res_calendar_caldav.c
index 63b6a6ba6..583b4b1de 100644
--- a/res/res_calendar_caldav.c
+++ b/res/res_calendar_caldav.c
@@ -29,7 +29,7 @@
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-#include <ical.h>
+#include <libical/ical.h>
#include <ne_session.h>
#include <ne_uri.h>
#include <ne_request.h>