Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Sep 2016 11:48:46 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422865 - head/www/p5-WWW-Curl/files
Message-ID:  <201609281148.u8SBmkQF026770@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Wed Sep 28 11:48:46 2016
New Revision: 422865
URL: https://svnweb.freebsd.org/changeset/ports/422865

Log:
  Fix build with curl 7.50.2+.
  
  Sponsored by:	Absolight

Modified:
  head/www/p5-WWW-Curl/files/patch-Makefile.PL   (contents, props changed)

Modified: head/www/p5-WWW-Curl/files/patch-Makefile.PL
==============================================================================
--- head/www/p5-WWW-Curl/files/patch-Makefile.PL	Wed Sep 28 10:37:35 2016	(r422864)
+++ head/www/p5-WWW-Curl/files/patch-Makefile.PL	Wed Sep 28 11:48:46 2016	(r422865)
@@ -4,7 +4,7 @@
      open (H, "<", $curl_h) or die ("Cannot open $curl_h: ".$!);
      while(<H>) {
          if (/^#define (CURL[A-Za-z0-9_]*)/) {
-+            next if $1 eq 'CURL_DID_MEMORY_FUNC_TYPEDEFS';
++            next if ($1 eq 'CURL_DID_MEMORY_FUNC_TYPEDEFS' || $1 eq 'CURL_STRICTER' );
              push @syms, $1;
          }
      }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609281148.u8SBmkQF026770>