Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Aug 2019 19:05:40 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r509732 - head/mail/mairix
Message-ID:  <201908241905.x7OJ5e25055360@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908241905.x7OJ5e25055360>