Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C6A7BE1DD for ; Fri, 14 Dec 2012 06:06:10 +0000 (UTC) Received: (qmail 61959 invoked by uid 500); 14 Dec 2012 06:06:10 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 61878 invoked by uid 500); 14 Dec 2012 06:06:10 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 61870 invoked by uid 99); 14 Dec 2012 06:06:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2012 06:06:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2012 06:06:09 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 58A6A23889BF; Fri, 14 Dec 2012 06:05:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1421680 - /subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in Date: Fri, 14 Dec 2012 06:05:48 -0000 To: commits@subversion.apache.org From: breser@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121214060549.58A6A23889BF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: breser Date: Fri Dec 14 06:05:48 2012 New Revision: 1421680 URL: http://svn.apache.org/viewvc?rev=1421680&view=rev Log: Similar to r1421645, but for the Perl bindings: filter out noisy warnings. Some of this could be moved to swig.m4 but for now this will do. * subversion/bindings/swig/perl/native/Makefile.PL.in ($cflags): Remove some warnings flags from our compile options. Modified: subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in Modified: subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in?rev=1421680&r1=1421679&r2=1421680&view=diff ============================================================================== --- subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in (original) +++ subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in Fri Dec 14 06:05:48 2012 @@ -54,6 +54,13 @@ my $includes = '@SVN_APR_INCLUDES@ @SVN_ # SWIG is using C++ style comments in an extern "C" code. $cflags =~ s/-ansi\s+//g; $cflags =~ s/-std=c89\s+//g; +$cflags =~ s/-Wall//g; +$cflags =~ s/-Wunused//g; +$cflags =~ s/-Wshadow//g; +$cflags =~ s/-Wstrict-prototypes//g; +$cflags =~ s/-Wmissing-declarations//g; +$cflags =~ s/-Wmissing-prototypes//g; +$cflags =~ s/-Wredundant-decls//g; # According to the log of r7937, the flags guarded by the conditional break # the build on FreeBSD if not conditionalized.