Commit ddb0b8d8 authored by Yang Tse's avatar Yang Tse
Browse files

Fix libssh2 preprocessor symbol definition check
parent 1345226b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 *                            | (__| |_| |  _ <| |___
 *                             \___|\___/|_| \_\_____|
 *
 * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
 * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
 *
 * This software is licensed as described in the file COPYING, which
 * you should have received as part of this distribution. The terms
@@ -29,7 +29,7 @@
#  error "SCP/SFTP protocols require libssh2 0.16 or later"
#endif

#if (LIBSSH2_VERSION_NUM >= 0x001300)
#if defined(LIBSSH2_VERSION_NUM) && (LIBSSH2_VERSION_NUM >= 0x001300)
/* libssh2 0.19 was the planned release version for a while before it was
   decided to instead become 1.0. Thus >= 0x001300 should still work fine
   for snapshots done during the 0.19 days as well as things released once
@@ -39,7 +39,7 @@
#  undef HAVE_LIBSSH2_SESSION_BLOCK_DIRECTIONS
#endif

#if (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
@@ -64,6 +64,7 @@ ssize_t Curl_sftp_recv(struct connectdata *conn, int sockindex,
#define Curl_ssh_enabled(conn,prot) (conn->protocol & prot)

#else /* USE_LIBSSH2 */

#define Curl_ssh_enabled(x,y) 0
#define Curl_scp_send(a,b,c,d) 0
#define Curl_sftp_send(a,b,c,d) 0