From owner-svn-ports-all@FreeBSD.ORG Sat May 31 23:09:40 2014 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6AFFCDC5; Sat, 31 May 2014 23:09:40 +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 5866E2645; Sat, 31 May 2014 23:09:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4VN9e7h080806; Sat, 31 May 2014 23:09:40 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4VN9eID080805; Sat, 31 May 2014 23:09:40 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405312309.s4VN9eID080805@svn.freebsd.org> From: John Marino Date: Sat, 31 May 2014 23:09:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356027 - head/lang/gcc410 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.18 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: Sat, 31 May 2014 23:09:40 -0000 Author: marino Date: Sat May 31 23:09:39 2014 New Revision: 356027 URL: http://svnweb.freebsd.org/changeset/ports/356027 QAT: https://qat.redports.org/buildarchive/r356027/ Log: lang/gcc410: Turn off JAVA option completely for DragonFly Recently DragonFly was added as an officially supported platform on GCC, providing OOTB support for C, C++, ObjC, and Fortran. However, the Java lang does not build, even if the first failure (boehm-gc) is fixed. Adding Makefile.DragonFly is the cleanest and least intrusive way I could remove the JAVA option (there is no EXCLUDE_OPTION_${OPSYS} support in bsd.options.mk) Approved by: maintainer (gerald@) Added: head/lang/gcc410/Makefile.DragonFly (contents, props changed) Added: head/lang/gcc410/Makefile.DragonFly ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gcc410/Makefile.DragonFly Sat May 31 23:09:39 2014 (r356027) @@ -0,0 +1,3 @@ +# $FreeBSD$ + +OPTIONS_EXCLUDE= JAVA