]> git.pld-linux.org Git - packages/perl-WWW-Curl.git/blobdiff - curl-7.66.0.patch
- fix building with curl 7.66+
[packages/perl-WWW-Curl.git] / curl-7.66.0.patch
diff --git a/curl-7.66.0.patch b/curl-7.66.0.patch
new file mode 100644 (file)
index 0000000..83ee75b
--- /dev/null
@@ -0,0 +1,39 @@
+From 0ef6ea22479b4696a0d62cd44aac8f4fe866db2f Mon Sep 17 00:00:00 2001
+From: Slaven Rezic <cpansand@cloud1.bbbike.org>
+Date: Sun, 29 Sep 2019 16:19:57 +0000
+Subject: [PATCH] compat for libcurl 7.66.0 (fix for RT #130591)
+Origin: CPAN RT #130591
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=130591
+Bug-Debian: https://bugs.debian.org/941915
+Reviewed-by: gregor herrmann <gregoa@debian.org>
+Last-Update: 2019-10-07
+
+---
+ Curl.xs     | 4 ++++
+ Makefile.PL | 2 +-
+ 2 files changed, 5 insertions(+), 1 deletion(-)
+
+--- a/Curl.xs
++++ b/Curl.xs
+@@ -18,6 +18,10 @@
+ #include <curl/easy.h>
+ #include <curl/multi.h>
++#ifdef CURLINC_MULTI_H
++#define __CURL_MULTI_H
++#endif
++
+ #define header_callback_func writeheader_callback_func
+ /* Do a favor for older perl versions */
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -132,7 +132,7 @@
+     close H;
+     for my $e (sort @syms) {
+-       if($e =~ /(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|_LAST\z|_LASTENTRY\z)/) {
++       if($e =~ /(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|^CURL_DID_MEMORY_FUNC_TYPEDEFS\z|_LAST\z|_LASTENTRY\z|^CURLINC_)/) {
+           next;
+        }
+        my ($group) = $e =~ m/^([^_]+_)/;
This page took 0.106937 seconds and 4 git commands to generate.