From owner-svn-ports-all@FreeBSD.ORG Fri May 29 21:19:57 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 F12D7F3C; Fri, 29 May 2015 21:19:56 +0000 (UTC) (envelope-from dim@FreeBSD.org) 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 DFD4E15CF; Fri, 29 May 2015 21:19:56 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4TLJuud001700; Fri, 29 May 2015 21:19:56 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4TLJuuB001699; Fri, 29 May 2015 21:19:56 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201505292119.t4TLJuuB001699@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Fri, 29 May 2015 21:19:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387891 - head/math/rapid/files 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: Fri, 29 May 2015 21:19:57 -0000 Author: dim (src committer) Date: Fri May 29 21:19:56 2015 New Revision: 387891 URL: https://svnweb.freebsd.org/changeset/ports/387891 Log: In PR200475, it turned out math/rapid is using "CC" to compile C++ files. Make it use ${CXX} instead. Approved by: jwbacon@tds.net (maintainer) PR: 200475, 200525 Added: head/math/rapid/files/patch-Makefile (contents, props changed) Added: head/math/rapid/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rapid/files/patch-Makefile Fri May 29 21:19:56 2015 (r387891) @@ -0,0 +1,9 @@ +--- Makefile.orig 1997-07-03 18:54:09.000000000 +0200 ++++ Makefile 2015-05-29 23:02:09.707278000 +0200 +@@ -1,5 +1,5 @@ + +-CC = CC -O ++CC = $(CXX) -O + + CFLAGS = -I. -I.. +