configure:17403: checking for CoreGraphics/CoreGraphics.h
configure:17403: /opt/local/bin/gcc-mp-16 -c -pipe -Os -arch ppc -I/opt/local/include conftest.c >&5
conftest.c:81:10: fatal error: CoreGraphics/CoreGraphics.h: No such file or directory
81 | #include <CoreGraphics/CoreGraphics.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:17403: $? = 1
configure: failed program was:
| /* confdefs.h */
This is on macOS 10.6, where CoreGraphics exists, of course. The problem is that it cannot be linked or included directly, since it is a part of ApplicationServices framework. So the configure test unnecessarily disables CoreGraphics-based loader.
This is on macOS 10.6, where CoreGraphics exists, of course. The problem is that it cannot be linked or included directly, since it is a part of ApplicationServices framework. So the configure test unnecessarily disables CoreGraphics-based loader.