svn commit: r526188 - head/net/guacamole-server

Piotr Kubaj pkubaj at FreeBSD.org
Sat Feb 15 00:05:08 UTC 2020


Author: pkubaj
Date: Sat Feb 15 00:05:08 2020
New Revision: 526188
URL: https://svnweb.freebsd.org/changeset/ports/526188

Log:
  net/guacamole-server: fix build on GCC architectures
  
  Instead of removing -Werror from many Makefiles, just use newer GCC, which also works:
  cc1: warnings being treated as errors
  color-scheme.c: In function 'guac_terminal_parse_color_scheme':
  color-scheme.c:262: warning: passing argument 4 of 'guac_terminal_parse_color_scheme_value' from incompatible pointer type

Modified:
  head/net/guacamole-server/Makefile

Modified: head/net/guacamole-server/Makefile
==============================================================================
--- head/net/guacamole-server/Makefile	Fri Feb 14 23:33:08 2020	(r526187)
+++ head/net/guacamole-server/Makefile	Sat Feb 15 00:05:08 2020	(r526188)
@@ -17,7 +17,8 @@ LIB_DEPENDS=	libossp-uuid.so:misc/ossp-uuid \
 
 CONFLICTS_BUILD=pulseaudio-*+jack_* ffmpeg-*+jack_*
 
-USES=		autoreconf gnome jpeg libtool localbase pkgconfig shebangfix
+USES=		autoreconf compiler:c11 gnome jpeg libtool localbase pkgconfig \
+		shebangfix
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	apache


More information about the svn-ports-all mailing list