@samo79
Quote:
dcraw.c:52:18: error: lcms.h: No such file or directory
Mean that dcraw.c cant found lcms.h file (check if your SDK have it in local/newlib/includes or kind). If problem still will occurs, you can check in dcraw.c how that lcms.h are includes. It can be included like:
include "lcms.h" (" " there mean that compiler will try to found include in the current direcotry".
if it will:
include <lcms.h>
then < > say to compiler found a file in the SDK.
it also can be like:
include <some_path/lcms.h>
so, you maybe need to create that "some_path" in your sdk includes, and put lcms.h in it.