From owner-svn-ports-head@FreeBSD.ORG Fri May 24 06:08:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1DD4C268; Fri, 24 May 2013 06:08:57 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x22b.google.com (mail-ie0-x22b.google.com [IPv6:2607:f8b0:4001:c03::22b]) by mx1.freebsd.org (Postfix) with ESMTP id C2689E65; Fri, 24 May 2013 06:08:56 +0000 (UTC) Received: by mail-ie0-f171.google.com with SMTP id e11so11100029iej.2 for ; Thu, 23 May 2013 23:08:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=FGwlANflvEpc9pX1ntnVUiBZ0ZscArAcoSlONRU9c0c=; b=D2iU7n74HhFwxafuLVnGTGQJ1a1KNWI+cF5Q6SbLPyx7+dpL/cl4yb1phu6EEzLTcp aYNvPUesQXY6cIJ+mBTDh00Y/YOmYIndIKHbK46f1bF41pWyIUuj37/CguGBSJf44k9t ui/4m9jcDTS8++d0khMoeM5t/B4o5nDnG8F7ljNCzZgM4cMixWixbKU87AZZeTjRB+TV qElfVa80SO0YZqdc3Rp+Q6X2KLw35S0j/KemZUomVGEpuOl5SIJM2eCUejXS9Dy6Lm1m qJWKF3SnYQt6ET0xe4tOF+H3GzjPpXu6WuQ+obC816X1dW8p8DT/tc/q2bB/3Mcy5FDA sFCQ== MIME-Version: 1.0 X-Received: by 10.50.72.49 with SMTP id a17mr1256088igv.36.1369375736448; Thu, 23 May 2013 23:08:56 -0700 (PDT) Received: by 10.64.23.243 with HTTP; Thu, 23 May 2013 23:08:56 -0700 (PDT) Received: by 10.64.23.243 with HTTP; Thu, 23 May 2013 23:08:56 -0700 (PDT) In-Reply-To: <20130524033728.GE48975@FreeBSD.org> References: <201305232205.r4NM5MSa002349@svn.freebsd.org> <20130524033728.GE48975@FreeBSD.org> Date: Fri, 24 May 2013 07:08:56 +0100 Message-ID: Subject: Re: svn commit: r318913 - in head/devel/libcfu: . files From: Chris Rees To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Chris Rees , svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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, 24 May 2013 06:08:57 -0000 On 24 May 2013 04:37, "Alexey Dokuchaev" wrote: > > On Thu, May 23, 2013 at 10:05:22PM +0000, Chris Rees wrote: > > New Revision: 318913 > > URL: http://svnweb.freebsd.org/changeset/ports/318913 > > > > Log: > > New versions of clang complain about assigning variables to themselves. > > > > Let's just remove -Werror and ignore the warnings. > > Hmm, wouldn't it be better to fix these bugs (judging from commit log it > should not be too hard) and send the patch upstream? They are just example files, doing silly things such as; argc = argc; Trouble is, removing these leads to "unused variable" warnings, so really it's better to ignore the warnings. Chris