Created attachment 169380 [details] Fix argument type for abs() in graphics/cuneiform During the exp-run in bug 208158, it was found that graphics/cuneiform gives errors with libc++ 3.8.0 [1]: /wrkdirs/usr/ports/graphics/cuneiform/work/cuneiform-linux-1.1.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. [1] http://package18.nyi.freebsd.org/data/headamd64PR208158-default/2016-03-22_18h30m05s/logs/errors/cuneiform-1.1.0_4.log
Thank you for the patch, approved
A commit references this bug: Author: dim Date: Mon Apr 18 19:02:56 UTC 2016 New revision: 413606 URL: https://svnweb.freebsd.org/changeset/ports/413606 Log: MFH: r413510 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: portmgr (junovitch) PR: 208843 Changes: _U branches/2016Q2/ branches/2016Q2/graphics/cuneiform/files/