svn commit: r520633 - head/graphics/graphene

Piotr Kubaj pkubaj at FreeBSD.org
Sun Dec 22 14:58:38 UTC 2019


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
 


More information about the svn-ports-all mailing list