K 10 svn:author V 3 dim K 8 svn:date V 27 2016-04-17T13:43:34.358258Z K 7 svn:log V 548 During the exp-run in bug 208158, it was found that graphics/cuneiform gives errors with libc++ 3.8.0: cuneiform_src/Kern/rimage/sources/main/cricontrol.cpp:597:32: error: call to 'abs' is ambiguous wNewHeight = (mbMarginsFlag ? abs(mrMargins.rmBottomMarg - mrMargins.rmTopMarg) : mpSourceDIB->GetLinesNumber()); ^~~ This is because abs() is being called an unsigned argument. Fix this by casting the argument to the appropriate signed type. Approved by: samm@os2.kiev.ua (maintainer) MFH: 2016Q2 END