mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 03:55:03 -05:00
build: fix libssh2_scp_send64() availability
This commit is contained in:
parent
364fd2f1ad
commit
992ceae386
@ -489,7 +489,7 @@ static int sshkeycallback(CURL *easy,
|
|||||||
* Earlier libssh2 versions didn't do SCP properly beyond 32bit sizes on 32bit
|
* Earlier libssh2 versions didn't do SCP properly beyond 32bit sizes on 32bit
|
||||||
* architectures so we check of the necessary function is present.
|
* architectures so we check of the necessary function is present.
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_LIBSSH2_SCP_SEND64
|
#ifndef HAVE_LIBSSH2_SCP_SEND64
|
||||||
#define SCP_SEND(a,b,c,d) libssh2_scp_send_ex(a, b, (int)(c), (size_t)d, 0, 0)
|
#define SCP_SEND(a,b,c,d) libssh2_scp_send_ex(a, b, (int)(c), (size_t)d, 0, 0)
|
||||||
#else
|
#else
|
||||||
#define SCP_SEND(a,b,c,d) libssh2_scp_send64(a, b, (int)(c), \
|
#define SCP_SEND(a,b,c,d) libssh2_scp_send64(a, b, (int)(c), \
|
||||||
|
@ -151,8 +151,6 @@ struct ssh_conn {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(LIBSSH2_VERSION_NUM) && (LIBSSH2_VERSION_NUM >= 0x010000)
|
#if defined(LIBSSH2_VERSION_NUM) && (LIBSSH2_VERSION_NUM >= 0x010000)
|
||||||
/* libssh2_sftp_seek64() has only ever been provided by libssh2 1.0 or
|
|
||||||
later */
|
|
||||||
# define HAVE_LIBSSH2_SFTP_SEEK64 1
|
# define HAVE_LIBSSH2_SFTP_SEEK64 1
|
||||||
#else
|
#else
|
||||||
# undef HAVE_LIBSSH2_SFTP_SEEK64
|
# undef HAVE_LIBSSH2_SFTP_SEEK64
|
||||||
@ -161,7 +159,7 @@ struct ssh_conn {
|
|||||||
#if defined(LIBSSH2_VERSION_NUM) && (LIBSSH2_VERSION_NUM >= 0x010206)
|
#if defined(LIBSSH2_VERSION_NUM) && (LIBSSH2_VERSION_NUM >= 0x010206)
|
||||||
# define HAVE_LIBSSH2_SCP_SEND64 1
|
# define HAVE_LIBSSH2_SCP_SEND64 1
|
||||||
#else
|
#else
|
||||||
# undef HAVE_LIBSSH2_SFTP_SEEK64
|
# undef HAVE_LIBSSH2_SCP_SEND64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user