svn commit: r422865 - head/www/p5-WWW-Curl/files

Mathieu Arnold mat at FreeBSD.org
Wed Sep 28 11:48:47 UTC 2016


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;
          }
      }


More information about the svn-ports-all mailing list