Questions tagged [libical]
14 questions
6
votes
2 answers
Compiling Libical for arm64 and x86_64 for iOS
It took some time for me to compile LibiCal for arm64 and x86_64 architecture for iOS(device and simulator). Thought it may be useful for others. Here is the steps I followed to compile LibiCal-1.0. I have taken code from below link
Compiling…

Girish Adiga
- 308
- 3
- 11
4
votes
2 answers
Objective C - char with umlaute to NSString
I am using libical which is a library to parse the icalendar format (RFC 2445).
The problem is, that there may be some german umlaute for example in the location field.
Now libical returns a const char * for each value like: …

Alexander
- 7,178
- 8
- 45
- 75
3
votes
2 answers
Parse .ics data in an iPhone project
I am making an iPhone application, and I want to use libical to parse .ics dat from an .ics file or from the URL location of the .ics file.
Firstly, how would I go about using libical in my project? How can I add it into my iPhone project, etc.?…

Ibz
- 518
- 1
- 8
- 26
3
votes
1 answer
Building libical-1.0 on OS X fails
I'm trying to use libical for a C-project. Unfortunately, the make command gives me the following output:
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive
Making all in design-data
make[2]: Nothing to be done for `all'.
Making…

chollinger
- 1,097
- 5
- 20
- 34
3
votes
2 answers
RRULE parsing in Postgresql
The goal: to generate a list of timestamps, each representing an event occurrance, from an RRULE string (i.e. FREQ=WEEKLY;INTERVAL=2;COUNT=8;WKST=SU;BYDAY=TU,TH) and a starting timestamp.
Since these times will be changed at the whim of a user,…

obimod
- 797
- 10
- 26
2
votes
2 answers
Cross compilation of libical
I'm trying to port libical to a arm based platform but there's an error while compiling.
Here are the results of my build steps:
$ ./configure --prefix=/opt/libical --build=i686-gnu-linux --host=arm-merlin-linux-uclibc
checking build system type...…

Noir
- 474
- 9
- 21
1
vote
4 answers
Compiling libical
I would like to compile libical and add it to my Xcode project.
I have read the README file and run the following commands in Terminal.app:
./configure
and
./configure --prefix=/proj/local/
Am I supposed to get compiled .a files somewhere that I…

user913059
- 579
- 4
- 19
1
vote
1 answer
libical-based CalDAV server
I'm looking for some pointers or example code on how to build a CalDAV server using libical. Specifically, how would you use libical to produce a text representation of an event that you could use to serve a response to a CalDAV request?

laslowh
- 8,482
- 5
- 34
- 45
1
vote
1 answer
Compiling libical for armv7 and arm64 with cmake
I've gone through the various solutions of compiling libical v1.0 for armv7, however the latest libical library available on github seems to have moved to cmake:
https://github.com/libical/libical
Can someone please guide me as to what I should be…

strangetimes
- 4,953
- 1
- 34
- 62
1
vote
2 answers
iOS - libical / const char * - memory usage
I am using the libical library to parse the iCalendar format and read the information I need out of it. It is working absolutely fine so far, but there is one odd thing concerning ical.
This is my code:
icalcomponent *root =…

Alexander
- 7,178
- 8
- 45
- 75
0
votes
0 answers
Proper way of building and importing libical
I may lack in general understanding of how I should build a project like libical.
I am trying to build this and add it to my main project.
After reading its install instructions, I ran these commands in the cloned libical folder:
mkdir build
cd…

Megool
- 963
- 2
- 8
- 29
0
votes
0 answers
Is there a way to install node without icu4c library?
I'm using macOS
One of the dependencies in my project is ical library.
But build phase is failing because of the conflict with icu4c library which comes together with node installation.
But I also need node on my machine
Is there a way to install…

Jake Green
- 53
- 1
- 7
0
votes
1 answer
Is there a portable way to get the local system timezone into a libical icaltimetype?
libical seems to only accept the Olsen city name to look up timezones in its database.
What I've got that's portable is a struct tm which has a GMT offset and the shorthand 3-4 letter code (EST/EDT etc) but there's no function that accepts that in…

stu
- 8,461
- 18
- 74
- 112
0
votes
2 answers
can't get C method icalrecur_expand_recurrence to work
This is a bit frustrating. I've been working on this for a while now, and I can't seem to get this method to work like it says it does.
#include "icalrecur.h"
#include /* for time() */
#include
int get_occurrences(char* rrule,…

obimod
- 797
- 10
- 26