Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Apr 2015 11:09:05 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r384099 - branches/2015Q2/databases/flamerobin
Message-ID:  <201504161109.t3GB95Lk091882@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Thu Apr 16 11:09:04 2015
New Revision: 384099
URL: https://svnweb.freebsd.org/changeset/ports/384099

Log:
  MFH: r384098
  
  Fix build with GCC on recent head kernel by disabling PCH for GCC
  
  With hat:	portmgr

Modified:
  branches/2015Q2/databases/flamerobin/Makefile
Directory Properties:
  branches/2015Q2/   (props changed)

Modified: branches/2015Q2/databases/flamerobin/Makefile
==============================================================================
--- branches/2015Q2/databases/flamerobin/Makefile	Thu Apr 16 11:08:11 2015	(r384098)
+++ branches/2015Q2/databases/flamerobin/Makefile	Thu Apr 16 11:09:04 2015	(r384099)
@@ -16,6 +16,7 @@ LICENSE_NAME=	FlameRobin Expat
 LICENSE_FILE=	${WRKSRC}/docs/fr_license.html
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
 
+USES=		compiler
 USE_FIREBIRD=	yes
 USE_WX=		2.8+
 WX_COMPS=	wx contrib
@@ -28,4 +29,11 @@ LDFLAGS+=	-L${LOCALBASE}/lib
 
 SUB_FILES=	pkg-message
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+# GCC is broken with PCH: https://lists.freebsd.org/pipermail/svn-src-all/2015-March/101722.html
+.if ${COMPILER_TYPE} == gcc
+CONFIGURE_ARGS=	--disable-precomp-headers
+.endif
+
+.include <bsd.port.post.mk>



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