Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
6f51d910
Commit
6f51d910
authored
May 17, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python/build/libs.py: update CURL to 7.76.1
parent
12158185
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
libs.py
python/build/libs.py
+2
-2
no_netrc.patch
src/lib/curl/patches/no_netrc.patch
+10
-9
No files found.
python/build/libs.py
View file @
6f51d910
...
@@ -385,8 +385,8 @@ openssl = OpenSSLProject(
...
@@ -385,8 +385,8 @@ openssl = OpenSSLProject(
)
)
curl
=
AutotoolsProject
(
curl
=
AutotoolsProject
(
'http
://curl.haxx.se/download/curl-7.74.0
.tar.xz'
,
'http
s://curl.se/download/curl-7.76.1
.tar.xz'
,
'
999d5f2c403cf6e25d58319fdd596611e455dd195208746bc6e6d197a77e878b
'
,
'
64bb5288c39f0840c07d077e30d9052e1cbb9fa6c2dc52523824cc859e679145
'
,
'lib/libcurl.a'
,
'lib/libcurl.a'
,
[
[
'--disable-shared'
,
'--enable-static'
,
'--disable-shared'
,
'--enable-static'
,
...
...
src/lib/curl/patches/no_netrc.patch
View file @
6f51d910
diff -ur curl-7.63.0.orig/lib/url.c curl-7.63.0/lib/url.c
Index: curl-7.71.1/lib/url.c
--- curl-7.63.0.orig/lib/url.c 2019-01-21 10:15:51.368019445 +0100
===================================================================
+++ curl-7.63.0/lib/url.c 2019-01-21 10:19:16.307523984 +0100
--- curl-7.71.1.orig/lib/url.c
@@ -3057,6 +3057,7 @@
+++ curl-7.71.1/lib/url.c
@@ -2871,6 +2871,7 @@
}
}
conn->bits.netrc = FALSE;
conn->bits.netrc = FALSE;
+#ifndef __BIONIC__
+#ifndef __BIONIC__
if(data->set.use_netrc != CURL_NETRC_IGNORED &&
if(data->set.use_netrc && !data->set.str[STRING_USERNAME]) {
(!*userp || !**userp || !*passwdp || !**passwdp)) {
bool netrc_user_changed = FALSE;
bool netrc_user_changed = FALSE;
@@ -3090,6 +3091,7 @@
bool netrc_passwd_changed = FALSE;
}
@@ -2895,6 +2896,7 @@
conn->bits.user_passwd = TRUE; /* enable user+password */
}
}
}
}
+#endif
+#endif
/* for updated strings, we update them in the URL */
/* for updated strings, we update them in the URL */
if(
user_changed
) {
if(
*userp
) {
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment