From owner-svn-ports-all@FreeBSD.ORG Thu Apr 16 11:08:12 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 776EDE80; Thu, 16 Apr 2015 11:08:12 +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 62B8390C; Thu, 16 Apr 2015 11:08:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3GB8CQ6091673; Thu, 16 Apr 2015 11:08:12 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3GB8CdZ091672; Thu, 16 Apr 2015 11:08:12 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201504161108.t3GB8CdZ091672@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:08:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384098 - head/databases/flamerobin X-SVN-Group: ports-head 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:08:12 -0000 Author: antoine Date: Thu Apr 16 11:08:11 2015 New Revision: 384098 URL: https://svnweb.freebsd.org/changeset/ports/384098 Log: Fix build with GCC on recent head kernel by disabling PCH for GCC With hat: portmgr Modified: head/databases/flamerobin/Makefile Modified: head/databases/flamerobin/Makefile ============================================================================== --- head/databases/flamerobin/Makefile Thu Apr 16 11:04:36 2015 (r384097) +++ head/databases/flamerobin/Makefile Thu Apr 16 11:08:11 2015 (r384098) @@ -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