-
Notifications
You must be signed in to change notification settings - Fork 682
Description
I've looked through much of the available literature on this and saw that it was resolved with #34, but something in the logic is preventing me from configuring with CoreText on iOS. I can see here that the logic is in place but can't figure out how to get past this...
checking for CTFontRef... no
checking for CTFontRef... (cached) no
configure: error: CoreText support requested but libcoretext not found
Here's my config.log from the build. As you'll see, the test of #include <CoreText/CoreText.h> doesn't run after the #include <ApplicationServices/ApplicationServices.h> test fails. I've seen that vlc had to change the logic to remove ApplicationServices completely and while that's an option I'd rather not hot patch my build system as it seems like this logic should be working. Any help would be greatly appreciated!
Edit: After a bit more research, the problem is not in configure.ac as I originally thought but in the configure script itself. If i sed the ApplicationServices include with the CoreText include and sed the frameworks, it configures and builds. I'll dig deeper.