svn commit: r501557 - head/www/surf

Piotr Kubaj pkubaj at FreeBSD.org
Mon May 13 12:09:26 UTC 2019


Author: pkubaj
Date: Mon May 13 12:09:25 2019
New Revision: 501557
URL: https://svnweb.freebsd.org/changeset/ports/501557

Log:
  www/surf: fix build with GCC-based architectures
  
  Add USES=compiler:c11:
  /usr/local/include/webkitgtk-4.0/jsc/JSCClass.h: At top level:
  /usr/local/include/webkitgtk-4.0/jsc/JSCClass.h:37: error: redefinition of typedef 'JSCClass'
  /usr/local/include/webkitgtk-4.0/jsc/JSCValue.h:43: error: previous declaration of 'JSCClass' was here
  /usr/local/include/webkitgtk-4.0/jsc/JSCClass.h:40: error: redefinition of typedef 'JSCContext'
  /usr/local/include/webkitgtk-4.0/jsc/JSCValue.h:44: error: previous declaration of 'JSCContext' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/www/surf/Makefile

Modified: head/www/surf/Makefile
==============================================================================
--- head/www/surf/Makefile	Mon May 13 12:07:58 2019	(r501556)
+++ head/www/surf/Makefile	Mon May 13 12:09:25 2019	(r501557)
@@ -20,7 +20,7 @@ RUN_DEPENDS=	dmenu:x11/dmenu \
 		curl:ftp/curl \
 		xterm:x11/xterm
 
-USES=		pkgconfig
+USES=		compiler:c11 pkgconfig
 USE_GNOME=	gtk30 pango cairo gdkpixbuf2
 USE_XORG=	x11
 


More information about the svn-ports-all mailing list