libical / XbICalendar

Objective-C Wrapper for the libical library
Other
17 stars 19 forks source link

Build script for github libical repo? #14

Open oooits72 opened 9 years ago

oooits72 commented 9 years ago

There is no bootstrap executable anymore in github version of libical. So I can't use currents scripts to build new versions of libical. I'm trying to fix few lines in script like so:

# replace
./bootstrap
./configure --prefix="$OUTPUT_DIR"

# with
cmake $LIBRARY_DIR

but have no luck. Build fails with arm archs.

In /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk/usr/include/machine/_types.h

I got error ("architecture not supported") here:

#if   defined (__arm__) || defined (__arm64__)
#include "arm/_types.h"
#else
#error architecture not supported
#endif

And I don't have neither knowledge or time to deal with it.

oooits72 commented 9 years ago

Would be great to make libical pod and build in target machine like OpenSSL do

But it's just my dreams...