Date: Fri, 29 May 2015 21:19:56 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387891 - head/math/rapid/files Message-ID: <201505292119.t4TLJuuB001699@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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.. +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505292119.t4TLJuuB001699>