svn commit: r508817 - head/mail/astroid

Piotr Kubaj pkubaj at FreeBSD.org
Tue Aug 13 09:18:19 UTC 2019


Author: pkubaj
Date: Tue Aug 13 09:18:19 2019
New Revision: 508817
URL: https://svnweb.freebsd.org/changeset/ports/508817

Log:
  mail/astroid: fix build with GCC-based architectures
  
  Use C11 compiler:
  /usr/local/include/webkitgtk-4.0/webkit2/WebKitUserContentFilterStore.h:49: error: redefinition of typedef 'WebKitUserContentFilter'
  /usr/local/include/webkitgtk-4.0/webkit2/WebKitUserContent.h:141: error: previous declaration of 'WebKitUserContentFilter' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/mail/astroid/Makefile

Modified: head/mail/astroid/Makefile
==============================================================================
--- head/mail/astroid/Makefile	Tue Aug 13 09:02:33 2019	(r508816)
+++ head/mail/astroid/Makefile	Tue Aug 13 09:18:19 2019	(r508817)
@@ -26,7 +26,8 @@ LIB_DEPENDS=	libboost_system.so:devel/boost-libs \
 		libsoup-2.4.so:devel/libsoup
 RUN_DEPENDS=	notmuch:mail/notmuch
 
-USES=		cmake desktop-file-utils gettext-runtime gnome pkgconfig
+USES=		cmake compiler:c11 desktop-file-utils gettext-runtime gnome \
+		pkgconfig
 USE_GITHUB=	yes
 GH_ACCOUNT=	astroidmail
 GH_PROJECT=	astroid


More information about the svn-ports-head mailing list