Date: Wed, 18 May 2016 15:55:42 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 209612] games/trackballs: Fix build with libc++ 3.8.0 Message-ID: <bug-209612-13@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209612 Bug ID: 209612 Summary: games/trackballs: Fix build with libc++ 3.8.0 Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: martymac@FreeBSD.org Reporter: dim@FreeBSD.org Flags: maintainer-feedback?(martymac@FreeBSD.org) Assignee: martymac@FreeBSD.org Created attachment 170451 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D170451&action= =3Dedit Remove hand-rolled abs functions from games/trackballs During the exp-run in bug 208158, it was found that games/trackballs gives errors with libc++ 3.8.0 [1]: glHelp.cc:132:13: error: 'abs' is missing exception specification 'throw()' inline Real abs(Real v) {return v>0.0?v:-v;} ^ This is because the program is attempting to define its own version of abs(= ), which conflicts with the one from <cmath>. Fix it by removing the custom versions of abs(). [1] http://package18.nyi.freebsd.org/data/headamd64PR208158-default/2016-05-01_= 10h29m48s/logs/errors/trackballs-1.1.4_21.log --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-209612-13>