Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Apr 2016 19:02:56 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r413606 - branches/2016Q2/graphics/cuneiform/files
Message-ID:  <201604181902.u3IJ2u44074790@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim (src committer)
Date: Mon Apr 18 19:02:56 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

Added:
  branches/2016Q2/graphics/cuneiform/files/
     - copied from r413510, head/graphics/cuneiform/files/
Modified:
Directory Properties:
  branches/2016Q2/   (props changed)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604181902.u3IJ2u44074790>