From owner-freebsd-ports@FreeBSD.ORG Sun Apr 19 09:06:20 2009 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9828C106566C for ; Sun, 19 Apr 2009 09:06:20 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: from mail-fx0-f167.google.com (mail-fx0-f167.google.com [209.85.220.167]) by mx1.freebsd.org (Postfix) with ESMTP id 065588FC15 for ; Sun, 19 Apr 2009 09:06:19 +0000 (UTC) (envelope-from alexanderchuranov@gmail.com) Received: by fxm11 with SMTP id 11so1489240fxm.43 for ; Sun, 19 Apr 2009 02:06:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=DGfpuY0pyChyg+lMU7ueatkowznYaKiAzQgj35lRjRA=; b=u6dVNCowoGZO6cvzLhpRfFRg1/S0Lz45H1TnbGyonfKxXxc6ELvqOO3zvRzpbezxvi dndQ4LYoimUtBXy9pmd49vXK+o3TavusuknD/X5ZsRpH3kDZt2q4SzN3cKmOiecQRnbk QsqWOUBXRXKKcIZhCbooH73Fbr/FMewOKkLZs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=q87D25N0VFWiiQn77o0J2XfpLDTto0cjBMzCTGC8QmhKnJ1+1R4cU/SrNp3L11dRRa A2i16lYhg8YDspaHTNtWZbRivjB34K7brQdzEy9yptDzZgUw7oLO4g0R+HLl8Adaujtn M16/Cmio3hejTpG46ai7eacHf/VM2GSxtD3x4= MIME-Version: 1.0 Received: by 10.204.100.201 with SMTP id z9mr4130769bkn.168.1240131978867; Sun, 19 Apr 2009 02:06:18 -0700 (PDT) In-Reply-To: <20090409062738.65318.qmail@avocado.salatschuessel.net> References: <20090409062738.65318.qmail@avocado.salatschuessel.net> Date: Sun, 19 Apr 2009 13:06:18 +0400 Message-ID: <3cb459ed0904190206y70199a7apf1ab124c1dfe3a85@mail.gmail.com> From: Alexander Churanov To: Oliver Lehmann Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, gerald@freebsd.org Subject: Re: problems with lang/gcc43 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Apr 2009 09:06:20 -0000 Hi Oliver, Just want to add my 2 cents. > 2) something in the > /usr/local/lib/gcc-4.3.4/include/c++/bits/locale_facets.h header seems to be > broken. just take the toupper() function definition. It takes two arguments > and it conflicts somehow with the libc declaration of toupper() where > toupper(3) reveals that it only takes one argument. This is has nothing in common with libc and toupper(3). This is a method of class "_ctype_abstract_base" used to implement C++ locale facet. Alexander Churanov