From owner-svn-ports-head@FreeBSD.ORG Fri Sep 6 19:25:24 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AA8039DA; Fri, 6 Sep 2013 19:25:24 +0000 (UTC) (envelope-from gerald@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97A3F29B6; Fri, 6 Sep 2013 19:25:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r86JPOfl023471; Fri, 6 Sep 2013 19:25:24 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r86JPOIf023470; Fri, 6 Sep 2013 19:25:24 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201309061925.r86JPOIf023470@svn.freebsd.org> From: Gerald Pfeifer Date: Fri, 6 Sep 2013 19:25:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326538 - head/lang/gcc44/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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Sep 2013 19:25:24 -0000 Author: gerald Date: Fri Sep 6 19:25:24 2013 New Revision: 326538 URL: http://svnweb.freebsd.org/changeset/ports/326538 Log: Work around a bug in libcpp that pulls in the optional system iconv if present (even if the libiconv port is present and requested) and fails using that. The issue is that /usr/include/iconv.h has #include which in turn, since both are included very late in the game, conflicts with similar definintions by libcpp itself. libstdc++ does not seem to require adjustments, so PR 161417 may not be relevant in full. PR: 161417 Added: head/lang/gcc44/files/patch-libcpp (contents, props changed) Added: head/lang/gcc44/files/patch-libcpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gcc44/files/patch-libcpp Fri Sep 6 19:25:24 2013 (r326538) @@ -0,0 +1,10 @@ +--- libcpp/internal.h 2012-07-30 09:24:59.000000000 +0000 ++++ libcpp/internal.h 2013-09-04 00:41:26.000000000 +0000 +@@ -27,6 +27,7 @@ + #include "cpp-id-data.h" + + #if HAVE_ICONV ++#define __bool_true_false_are_defined + #include + #else + #define HAVE_ICONV 0