diff options
author | obache <obache@pkgsrc.org> | 2006-12-20 13:28:59 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2006-12-20 13:28:59 +0000 |
commit | 303815e32a91724f0e5e043d3d7c9c444b98124c (patch) | |
tree | a18d4e4423b56b934a662bcf3bac7747086aa291 /www/p5-WWW-Curl | |
parent | 7a3b7e5ee6b850d07b6fe81ce09a2e30db0a3283 (diff) | |
download | pkgsrc-303815e32a91724f0e5e043d3d7c9c444b98124c.tar.gz |
Fix problem build with curl>=7.10.8.
Support removed PASSWD callback (dropped in curl 7.10.8).
http://cool.haxx.se/cvs.cgi/curl-perl/Curl.xs.diff?r1=1.3&r2=1.4
Diffstat (limited to 'www/p5-WWW-Curl')
-rw-r--r-- | www/p5-WWW-Curl/distinfo | 3 | ||||
-rw-r--r-- | www/p5-WWW-Curl/patches/patch-aa | 86 |
2 files changed, 88 insertions, 1 deletions
diff --git a/www/p5-WWW-Curl/distinfo b/www/p5-WWW-Curl/distinfo index 8dcad0fd121..6ffa93f1b2d 100644 --- a/www/p5-WWW-Curl/distinfo +++ b/www/p5-WWW-Curl/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2005/02/24 14:08:37 wiz Exp $ +$NetBSD: distinfo,v 1.3 2006/12/20 13:28:59 obache Exp $ SHA1 (WWW-Curl-2.0.tar.gz) = 1b499e1419d89111e8b52adfdee02a09b184f83d RMD160 (WWW-Curl-2.0.tar.gz) = aaeb46c2af276f84fd8dd23c841fa3cd23762908 Size (WWW-Curl-2.0.tar.gz) = 22546 bytes +SHA1 (patch-aa) = ddfb9426e704e5abd632e35b2278b547efb8c3b3 diff --git a/www/p5-WWW-Curl/patches/patch-aa b/www/p5-WWW-Curl/patches/patch-aa new file mode 100644 index 00000000000..f75c5ad1764 --- /dev/null +++ b/www/p5-WWW-Curl/patches/patch-aa @@ -0,0 +1,86 @@ +$NetBSD: patch-aa,v 1.1 2006/12/20 13:28:59 obache Exp $ + +Support removed PASSWD callback (dropped in curl 7.10.8). +http://cool.haxx.se/cvs.cgi/curl-perl/Curl.xs.diff?r1=1.3&r2=1.4 + +--- Curl.xs.orig 2003-04-22 12:18:45.000000000 +0000 ++++ Curl.xs +@@ -101,10 +101,13 @@ static perl_curl_easy_callback_code call + return CALLBACK_PROGRESS; + break; + ++/* PASSWD callback dropped in 7.10.8 */ ++#if (LIBCURL_VERSION_NUM<0x070A08) + case CURLOPT_PASSWDFUNCTION: + case CURLOPT_PASSWDDATA: + return CALLBACK_PASSWD; + break; ++#endif + } + croak("Bad callback index requested\n"); + return CALLBACK_LAST; +@@ -194,11 +197,13 @@ static perl_curl_form * perl_curl_form_n + + static void perl_curl_form_delete(perl_curl_form *self) + { ++#if 0 + #if LIBCURL_VERSION_NUM >= 0x070900 + if (self->post) { + curl_formfree(self->post); + } + #endif ++#endif + Safefree(self); + } + +@@ -536,15 +541,18 @@ curl_easy_init(...) + curl_easy_setopt(self->curl, CURLOPT_READFUNCTION, read_callback_func); + curl_easy_setopt(self->curl, CURLOPT_HEADERFUNCTION, header_callback_func); + curl_easy_setopt(self->curl, CURLOPT_PROGRESSFUNCTION, progress_callback_func); ++#if (LIBCURL_VERSION_NUM<0x070A08) + curl_easy_setopt(self->curl, CURLOPT_PASSWDFUNCTION, passwd_callback_func); ++#endif + + /* set our own object as the context for all curl callbacks */ + curl_easy_setopt(self->curl, CURLOPT_FILE, self); + curl_easy_setopt(self->curl, CURLOPT_INFILE, self); + curl_easy_setopt(self->curl, CURLOPT_WRITEHEADER, self); + curl_easy_setopt(self->curl, CURLOPT_PROGRESSDATA, self); ++#if (LIBCURL_VERSION_NUM<0x070A08) + curl_easy_setopt(self->curl, CURLOPT_PASSWDDATA, self); +- ++#endif + /* we always collect this, in case it's wanted */ + curl_easy_setopt(self->curl, CURLOPT_ERRORBUFFER, self->errbuf); + +@@ -580,8 +588,9 @@ curl_easy_duphandle(self) + curl_easy_setopt(clone->curl, CURLOPT_INFILE, clone); + curl_easy_setopt(clone->curl, CURLOPT_WRITEHEADER, clone); + curl_easy_setopt(clone->curl, CURLOPT_PROGRESSDATA, clone); ++#if (LIBCURL_VERSION_NUM<0x070A08) + curl_easy_setopt(clone->curl, CURLOPT_PASSWDDATA, clone); +- ++#endif + /* we always collect this, in case it's wanted */ + curl_easy_setopt(clone->curl, CURLOPT_ERRORBUFFER, clone->errbuf); + +@@ -617,7 +626,9 @@ curl_easy_setopt(self, option, value) + case CURLOPT_INFILE: + case CURLOPT_WRITEHEADER: + case CURLOPT_PROGRESSDATA: ++#if (LIBCURL_VERSION_NUM<0x070A08) + case CURLOPT_PASSWDDATA: ++#endif + perl_curl_easy_register_callback(self,&(self->callback_ctx[callback_index(option)]),value); + break; + +@@ -626,7 +637,9 @@ curl_easy_setopt(self, option, value) + case CURLOPT_READFUNCTION: + case CURLOPT_HEADERFUNCTION: + case CURLOPT_PROGRESSFUNCTION: ++#if (LIBCURL_VERSION_NUM<0x070A08) + case CURLOPT_PASSWDFUNCTION: ++#endif + perl_curl_easy_register_callback(self,&(self->callback[callback_index(option)]),value); + break; + |