diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-09-28 11:48:46 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-09-28 11:48:46 +0000 |
commit | 4cb396b59c21f12054fda55c9c154951bb521bb8 (patch) | |
tree | 0840fe75fc9839759353c3bf239ac3577164e15c /www/p5-WWW-Curl/files | |
parent | f9348f7cf3f947478cb5895c39bf309aee16aa7b (diff) | |
download | ports-4cb396b59c21f12054fda55c9c154951bb521bb8.tar.gz ports-4cb396b59c21f12054fda55c9c154951bb521bb8.zip |
Fix build with curl 7.50.2+.
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=422865
Diffstat (limited to 'www/p5-WWW-Curl/files')
-rw-r--r-- | www/p5-WWW-Curl/files/patch-Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/p5-WWW-Curl/files/patch-Makefile.PL b/www/p5-WWW-Curl/files/patch-Makefile.PL index 5880cd5c45c0..f0ac8d720360 100644 --- a/www/p5-WWW-Curl/files/patch-Makefile.PL +++ b/www/p5-WWW-Curl/files/patch-Makefile.PL @@ -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; } } |