Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit 8f1380f

Browse files
committed
Build 7.56.1, add back libssh2 support
1 parent 1b45fce commit 8f1380f

File tree

7 files changed

+7
-36
lines changed

7 files changed

+7
-36
lines changed

PKGBUILD

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fi
1212
_realname=curl
1313
pkgbase=mingw-w64-${_realname}
1414
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}${_namesuff}"
15-
pkgver=7.56.0
15+
pkgver=7.56.1
1616
pkgrel=1
1717
pkgdesc="Command line tool and library for transferring data with URLs. (mingw-w64)"
1818
arch=('any')
@@ -38,8 +38,7 @@ fi
3838
options=('staticlibs')
3939
source=("${url}/download/${_realname}-${pkgver}.tar.bz2"{,.asc}
4040
"0001-Make-cURL-relocatable.patch"
41-
"0002-cURL-Get-relocatable-base-from-.dll-instead-of-.exe.patch"
42-
"largebuf.patch")
41+
"0002-cURL-Get-relocatable-base-from-.dll-instead-of-.exe.patch")
4342
sha256sums=('de60a4725a3d461c70aa571d7d69c788f1816d9d1a8a2ef05f864ce8f01279df'
4443
'SKIP'
4544
'3008bbfa20f2b23d57db0c4b844af877bd0ad50be7a06148ff5b7b7dc0386f1e'
@@ -54,7 +53,6 @@ prepare() {
5453
rm -f lib/pathtools.h lib/pathtools.c > /dev/null 2>&1 || true
5554
patch -p1 -i "${srcdir}/0001-Make-cURL-relocatable.patch"
5655
patch -p1 -i "${srcdir}/0002-cURL-Get-relocatable-base-from-.dll-instead-of-.exe.patch"
57-
patch -p1 -i "${srcdir}/largebuf.patch"
5856
autoreconf -vfi
5957
}
6058

@@ -96,7 +94,7 @@ build() {
9694
--host=${MINGW_CHOST} \
9795
--target=${MINGW_CHOST} \
9896
--without-random \
99-
--without-libssh2 \
97+
--with-libssh2 \
10098
--enable-static \
10199
--disable-shared \
102100
--enable-sspi \

include/curl/curlver.h

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

3131
/* This is the version number of the libcurl package from which this header
3232
file origins: */
33-
#define LIBCURL_VERSION "7.56.0"
33+
#define LIBCURL_VERSION "7.56.1"
3434

3535
/* The numeric version number is also available "in parts" by using these
3636
defines: */
3737
#define LIBCURL_VERSION_MAJOR 7
3838
#define LIBCURL_VERSION_MINOR 56
39-
#define LIBCURL_VERSION_PATCH 0
39+
#define LIBCURL_VERSION_PATCH 1
4040

4141
/* This is the numeric version of the libcurl version number, meant for easier
4242
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
@@ -57,7 +57,7 @@
5757
CURL_VERSION_BITS() macro since curl's own configure script greps for it
5858
and needs it to contain the full number.
5959
*/
60-
#define LIBCURL_VERSION_NUM 0x073800
60+
#define LIBCURL_VERSION_NUM 0x073801
6161

6262
/*
6363
* This is the date and time when the full source package was created. The
@@ -68,7 +68,7 @@
6868
*
6969
* "2007-11-23"
7070
*/
71-
#define LIBCURL_TIMESTAMP "2017-10-04"
71+
#define LIBCURL_TIMESTAMP "2017-10-23"
7272

7373
#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|z)
7474
#define CURL_AT_LEAST_VERSION(x,y,z) \

lib/i386/libcurl-dualssl.a

39.5 KB
Binary file not shown.

lib/i386/libssh2.a

226 KB
Binary file not shown.

lib/x64/libcurl-dualssl.a

38.1 KB
Binary file not shown.

lib/x64/libssh2.a

221 KB
Binary file not shown.

readme.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)