svn commit: r509732 - head/mail/mairix

Piotr Kubaj pkubaj at FreeBSD.org
Sat Aug 24 19:05:41 UTC 2019


Author: pkubaj
Date: Sat Aug 24 19:05:40 2019
New Revision: 509732
URL: https://svnweb.freebsd.org/changeset/ports/509732

Log:
  mail/mairix: fix build with GCC-based architectures
  
  C11 compiler is necessary:
  parse.c:1889: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
  
  Approved by:	mentors (implicit approval)

Modified:
  head/mail/mairix/Makefile

Modified: head/mail/mairix/Makefile
==============================================================================
--- head/mail/mairix/Makefile	Sat Aug 24 17:57:18 2019	(r509731)
+++ head/mail/mairix/Makefile	Sat Aug 24 19:05:40 2019	(r509732)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 BROKEN_armv6=	fails to build under emulation: qemu: uncaught target signal 11 (Segmentation fault) - core dumped
 BROKEN_armv7=	fails to build under emulation: qemu: uncaught target signal 11 (Segmentation fault) - core dumped
 
-USES=		bison gmake ssl
+USES=		bison compiler:c11 gmake ssl
 USE_GITHUB=	yes
 GH_ACCOUNT=	vandry
 


More information about the svn-ports-all mailing list