From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 27 20:10:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32423106567A for ; Fri, 27 Aug 2010 20:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8AEDD8FC18 for ; Fri, 27 Aug 2010 20:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7RKA5MH043058 for ; Fri, 27 Aug 2010 20:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7RKA5Os043057; Fri, 27 Aug 2010 20:10:05 GMT (envelope-from gnats) Resent-Date: Fri, 27 Aug 2010 20:10:05 GMT Resent-Message-Id: <201008272010.o7RKA5Os043057@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andriy Gapon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FA6E10656BA for ; Fri, 27 Aug 2010 20:00:22 +0000 (UTC) (envelope-from avg@pautina.in.ua) Received: from smtp.pautina-nau.net (smtp.pautina-nau.net [194.0.89.243]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB6C8FC16 for ; Fri, 27 Aug 2010 20:00:21 +0000 (UTC) Received: from [92.249.64.71] (helo=trant.local.) by smtp.pautina-nau.net with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Op564-0007m2-K2; Fri, 27 Aug 2010 23:00:20 +0300 Received: from trant.local. (localhost [127.0.0.1]) by trant.local. (8.14.4/8.14.4) with ESMTP id o7RK0KHE057307; Fri, 27 Aug 2010 23:00:20 +0300 (EEST) (envelope-from avg@trant.local) Received: (from root@localhost) by trant.local. (8.14.4/8.14.4/Submit) id o7RK0K68057306; Fri, 27 Aug 2010 23:00:20 +0300 (EEST) (envelope-from avg) Message-Id: <201008272000.o7RK0K68057306@trant.local.> Date: Fri, 27 Aug 2010 23:00:20 +0300 (EEST) From: Andriy Gapon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jesse@cs.uni-magdeburg.de Subject: ports/150051: [PATCH] devel/tmake: honor CXX in linking mode X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Aug 2010 20:10:08 -0000 >Number: 150051 >Category: ports >Synopsis: [PATCH] devel/tmake: honor CXX in linking mode >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Aug 27 20:10:05 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 9.0-CURRENT amd64 >Description: tmake build system is patched to honor CXX for C++ compilation, but for linking g++ is hardcoded. This patch makes tmake build system use CXX for linking as well. Port maintainer (jesse@cs.uni-magdeburg.de) is cc'd. Please note that maintainer's email seems to bounce. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- tmake-1.7_5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/tmake.orig/files/patch-aa /usr/ports/devel/tmake/files/patch-aa --- /usr/ports/devel/tmake.orig/files/patch-aa 2001-01-16 15:26:42.000000000 +0200 +++ /usr/ports/devel/tmake/files/patch-aa 2010-08-27 22:54:35.313405979 +0300 @@ -1,6 +1,6 @@ ---- lib/unix/generic.t Mon Dec 4 03:26:06 2000 -+++ lib/unix/generic.t.new Mon Jan 15 11:42:17 2001 -@@ -205,10 +205,10 @@ +--- lib/unix/generic.t.orig 2000-12-04 04:26:06.000000000 +0200 ++++ lib/unix/generic.t 2010-08-27 22:54:27.797820407 +0300 +@@ -205,13 +205,13 @@ ####### Compiler, tools and options @@ -14,4 +14,8 @@ +CXXFLAGS+= #$ Expand("TMAKE_CXXFLAGS"); ExpandGlue("DEFINES","-D"," -D",""); INCPATH = #$ ExpandPath("INCPATH","-I"," -I",""); #$ Config("staticlib") && DisableOutput(); - LINK = #$ Expand("TMAKE_LINK"); +-LINK = #$ Expand("TMAKE_LINK"); ++LINK = $(CXX) + LFLAGS = #$ Expand("TMAKE_LFLAGS"); + LIBS = $(SUBLIBS) #$ Expand("TMAKE_LIBDIR_FLAGS"); Expand("TMAKE_LIBS"); + #$ Config("staticlib") && EnableOutput(); --- tmake-1.7_5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: