svn commit: r517144 - head/graphics/gcolor3

Piotr Kubaj pkubaj at FreeBSD.org
Sat Nov 9 20:17:06 UTC 2019


Author: pkubaj
Date: Sat Nov  9 20:17:05 2019
New Revision: 517144
URL: https://svnweb.freebsd.org/changeset/ports/517144

Log:
  graphics/gcolor3: fix build on GCC architectures
  
  Don't add -Werror, it's against ports policy and breaks GCC architectures.
  
  Approved by:	tcberner (mentor), portmgr (-Werror policy)
  Differential Revision:	https://reviews.freebsd.org/D22293

Modified:
  head/graphics/gcolor3/Makefile

Modified: head/graphics/gcolor3/Makefile
==============================================================================
--- head/graphics/gcolor3/Makefile	Sat Nov  9 19:53:18 2019	(r517143)
+++ head/graphics/gcolor3/Makefile	Sat Nov  9 20:17:05 2019	(r517144)
@@ -11,8 +11,6 @@ COMMENT=	Simple color chooser
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BROKEN_powerpc64=	fails to compile: main.c: In function '_print_version_and_exit': will never be executed
-
 USES=		gnome gettext meson libtool pkgconfig
 USE_GITLAB=	yes
 GL_SITE=	https://gitlab.gnome.org
@@ -20,5 +18,7 @@ GL_ACCOUNT=	World
 GL_COMMIT=	17dca0125fc3c931418d8723b684332d35bd5715
 USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool
 INSTALLS_ICONS=	yes
+
+MESON_ARGS=	-Dwerror=false
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list