From owner-svn-ports-all@FreeBSD.ORG Thu Apr 16 11:09:05 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0F19F6C; Thu, 16 Apr 2015 11:09:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8BEC4915; Thu, 16 Apr 2015 11:09:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3GB959Z091883; Thu, 16 Apr 2015 11:09:05 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3GB95Lk091882; Thu, 16 Apr 2015 11:09:05 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201504161109.t3GB95Lk091882@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 16 Apr 2015 11:09:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r384099 - branches/2015Q2/databases/flamerobin X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Apr 2015 11:09:05 -0000 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 +.include + +# 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