Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Dec 2019 14:58:38 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520633 - head/graphics/graphene
Message-ID:  <201912221458.xBMEwcwZ070188@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Dec 22 14:58:37 2019
New Revision: 520633
URL: https://svnweb.freebsd.org/changeset/ports/520633

Log:
  graphics/graphene: fix build on GCC architectures
  
  Base GCC doesn't like this:
  /usr/include/math.h: In function '__inline_isnan':
  /usr/include/math.h:200: error: comparing floating point with == or != is unsafe
  /usr/include/math.h: In function '__inline_isnanf':
  /usr/include/math.h:207: error: comparing floating point with == or != is unsafe
  /usr/include/math.h: In function '__inline_isnanl':
  /usr/include/math.h:214: error: comparing floating point with == or != is unsafe

Modified:
  head/graphics/graphene/Makefile

Modified: head/graphics/graphene/Makefile
==============================================================================
--- head/graphics/graphene/Makefile	Sun Dec 22 14:38:57 2019	(r520632)
+++ head/graphics/graphene/Makefile	Sun Dec 22 14:58:37 2019	(r520633)
@@ -10,7 +10,7 @@ COMMENT=	Optimizations for speeding up vector operatio
 
 LICENSE=	MIT
 
-USES=		gnome meson pkgconfig python:3.4+ shebangfix tar:xz
+USES=		compiler:c11 gnome meson pkgconfig python:3.4+ shebangfix tar:xz
 USE_GNOME=	glib20 pygobject3
 USE_LDCONFIG=	yes
 



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