Re: [Lcms-user] Build warnings on OSX / clang
An ICC-based CMM for color management
Brought to you by:
mm2
From: Philip R. <phi...@or...> - 2017-08-09 13:17:53
|
[RESEND] I submitted the current git repo state into the JDK build system and GCC 4.82 (if I believe our logging) did not like these lines for .. the reason it states .. /sjdk/src/java.desktop/share/native/liblcms/cmsopt.c:1550:48: error: signed and unsigned type in conditional expression [-Werror=sign-compare] ri = (l1 < 0) ? 0 : ((l1 > 16384) ? 16384U : l1); ^ /s/jdk/src/java.desktop/share/native/liblcms/cmsopt.c:1551:48: error: signed and unsigned type in conditional expression [-Werror=sign-compare] gi = (l2 < 0) ? 0 : ((l2 > 16384) ? 16384U : l2); ^ /s/jdk/src/java.desktop/share/native/liblcms/cmsopt.c:1552:48: error: signed and unsigned type in conditional expression [-Werror=sign-compare] bi = (l3 < 0) ? 0 : ((l3 > 16384) ? 16384U : l3); -phil. |