You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2012/11/07 17:50:17 UTC

svn commit: r1406714 - /subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in

Author: philip
Date: Wed Nov  7 16:50:17 2012
New Revision: 1406714

URL: http://svn.apache.org/viewvc?rev=1406714&view=rev
Log:
Followup to r1389658, remove another troublesome flag.

* subversion/bindings/swig/perl/native/Makefile.PL.in
  (cflags): Remove flag.

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=1406714&r1=1406713&r2=1406714&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in (original)
+++ subversion/trunk/subversion/bindings/swig/perl/native/Makefile.PL.in Wed Nov  7 16:50:17 2012
@@ -53,6 +53,7 @@ my $includes = '@SVN_APR_INCLUDES@ @SVN_
 # https://sourceforge.net/tracker/?func=detail&aid=3571361&group_id=1645&atid=101645
 # SWIG is using C++ style comments in an extern "C" code.
 $cflags =~ s/-ansi\s+//g;
+$cflags =~ s/-std=c89\s+//g;
 
 # According to the log of r7937, the flags guarded by the conditional break
 # the build on FreeBSD if not conditionalized.