Skip to content

Commit 9356836

Browse files
author
Git for Windows Build Agent
committed
Update 6 packages
curl (8.11.0-2 -> 8.11.1-1) libcurl (8.11.0-2 -> 8.11.1-1) mingw-w64-i686-curl-openssl-alternate (8.11.0-2 -> 8.11.1-1) mingw-w64-i686-curl-winssl (8.11.0-2 -> 8.11.1-1) mingw-w64-x86_64-curl-openssl-alternate (8.11.0-2 -> 8.11.1-1) mingw-w64-x86_64-curl-winssl (8.11.0-2 -> 8.11.1-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent e281459 commit 9356836

File tree

1,568 files changed

+64
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,568 files changed

+64
-52
lines changed

mingw32/bin/curl-config

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ while test "$#" -gt 0; do
9696
;;
9797

9898
--version)
99-
echo 'libcurl 8.11.0'
99+
echo 'libcurl 8.11.1'
100100
exit 0
101101
;;
102102

@@ -108,11 +108,11 @@ while test "$#" -gt 0; do
108108
# dash as that's used for things like version 1.2.3-pre1
109109
cpatch=`echo "$checkfor" | cut -d. -f3 | cut -d- -f1`
110110

111-
vmajor=`echo '8.11.0' | cut -d. -f1`
112-
vminor=`echo '8.11.0' | cut -d. -f2`
111+
vmajor=`echo '8.11.1' | cut -d. -f1`
112+
vminor=`echo '8.11.1' | cut -d. -f2`
113113
# when extracting the patch part we strip off everything after a
114114
# dash as that's used for things like version 1.2.3-pre1
115-
vpatch=`echo '8.11.0' | cut -d. -f3 | cut -d- -f1`
115+
vpatch=`echo '8.11.1' | cut -d. -f3 | cut -d- -f1`
116116

117117
if test "$vmajor" -gt "$cmajor"; then
118118
exit 0
@@ -128,12 +128,12 @@ while test "$#" -gt 0; do
128128
fi
129129
fi
130130

131-
echo "requested version $checkfor is newer than existing 8.11.0"
131+
echo "requested version $checkfor is newer than existing 8.11.1"
132132
exit 1
133133
;;
134134

135135
--vernum)
136-
echo '080b00'
136+
echo '080b01'
137137
exit 0
138138
;;
139139

@@ -173,7 +173,7 @@ while test "$#" -gt 0; do
173173

174174
--static-libs)
175175
if test 'Xno' != 'Xno'; then
176-
echo "${exec_prefix}/lib/libcurl.a -Wl,--no-seh -Wl,--large-address-aware -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32"
176+
echo "${exec_prefix}/lib/libcurl.a -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32"
177177
else
178178
echo 'curl was built with static libraries disabled' >&2
179179
exit 1

mingw32/bin/curl.exe

-24.5 KB
Binary file not shown.

mingw32/bin/libcurl-4.dll

-1 KB
Binary file not shown.

mingw32/bin/libcurl-openssl-4.dll

-512 Bytes
Binary file not shown.

mingw32/include/curl/curl.h

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,14 +551,14 @@ typedef enum {
551551
CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */
552552
CURLE_OBSOLETE32, /* 32 - NOT USED */
553553
CURLE_RANGE_ERROR, /* 33 - RANGE "command" did not work */
554-
CURLE_HTTP_POST_ERROR, /* 34 */
554+
CURLE_OBSOLETE34, /* 34 */
555555
CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */
556556
CURLE_BAD_DOWNLOAD_RESUME, /* 36 - could not resume download */
557557
CURLE_FILE_COULDNT_READ_FILE, /* 37 */
558558
CURLE_LDAP_CANNOT_BIND, /* 38 */
559559
CURLE_LDAP_SEARCH_FAILED, /* 39 */
560560
CURLE_OBSOLETE40, /* 40 - NOT USED */
561-
CURLE_FUNCTION_NOT_FOUND, /* 41 - NOT USED starting with 7.53.0 */
561+
CURLE_OBSOLETE41, /* 41 - NOT USED starting with 7.53.0 */
562562
CURLE_ABORTED_BY_CALLBACK, /* 42 */
563563
CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */
564564
CURLE_OBSOLETE44, /* 44 - NOT USED */
@@ -643,6 +643,12 @@ typedef enum {
643643
#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
644644
the obsolete stuff removed! */
645645

646+
/* removed in 7.53.0 */
647+
#define CURLE_FUNCTION_NOT_FOUND CURLE_OBSOLETE41
648+
649+
/* removed in 7.56.0 */
650+
#define CURLE_HTTP_POST_ERROR CURLE_OBSOLETE34
651+
646652
/* Previously obsolete error code reused in 7.38.0 */
647653
#define CURLE_OBSOLETE16 CURLE_HTTP2
648654

mingw32/include/curl/curlver.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232

3333
/* This is the version number of the libcurl package from which this header
3434
file origins: */
35-
#define LIBCURL_VERSION "8.11.0"
35+
#define LIBCURL_VERSION "8.11.1"
3636

3737
/* The numeric version number is also available "in parts" by using these
3838
defines: */
3939
#define LIBCURL_VERSION_MAJOR 8
4040
#define LIBCURL_VERSION_MINOR 11
41-
#define LIBCURL_VERSION_PATCH 0
41+
#define LIBCURL_VERSION_PATCH 1
4242

4343
/* This is the numeric version of the libcurl version number, meant for easier
4444
parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will
@@ -59,7 +59,7 @@
5959
CURL_VERSION_BITS() macro since curl's own configure script greps for it
6060
and needs it to contain the full number.
6161
*/
62-
#define LIBCURL_VERSION_NUM 0x080b00
62+
#define LIBCURL_VERSION_NUM 0x080b01
6363

6464
/*
6565
* This is the date and time when the full source package was created. The
@@ -70,7 +70,7 @@
7070
*
7171
* "2007-11-23"
7272
*/
73-
#define LIBCURL_TIMESTAMP "2024-11-06"
73+
#define LIBCURL_TIMESTAMP "2024-12-11"
7474

7575
#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
7676
#define CURL_AT_LEAST_VERSION(x,y,z) \

mingw32/lib/pkgconfig/libcurl.pc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ supported_features="alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos
3232
Name: libcurl
3333
URL: https://curl.se/
3434
Description: Library to transfer files with HTTP, FTP, etc.
35-
Version: 8.11.0
35+
Version: 8.11.1
3636
Requires:
3737
Requires.private: libidn2,zlib,libbrotlidec,libzstd,libpsl,libssh2
3838
Libs: -L${libdir} -lcurl
39-
Libs.private: -Wl,--no-seh -Wl,--large-address-aware -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
39+
Libs.private: -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
4040
Cflags: -I${includedir}
4141
Cflags.private: -DCURL_STATICLIB
1 Byte
Binary file not shown.

mingw32/share/man/man1/curl.1.gz

213 Bytes
Binary file not shown.
1 Byte
Binary file not shown.

0 commit comments

Comments
 (0)