conan-io / conan-center-index

Recipes for the ConanCenter repository
https://conan.io/center
MIT License
958 stars 1.76k forks source link

[package] libcurl/7.87.0: cannot build with SFTP/SCP protocols enabled (libssh2) #15457

Closed zenden2k closed 1 year ago

zenden2k commented 1 year ago

Description

The option libcurl:with_libssh2=True does not enable SFTP and SCP protocols in libcurl.

Even though the libssh2 library appears in the logs as a dependency, libcurl is not being built with it.

-- Enabled features: SSL IPv6 unixsockets libz AsynchDNS Largefile alt-svc HSTS NTLM NTLM_WB HTTPS-proxy unicode threadsafe
-- Enabled protocols: DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS MQTT POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP
-- Enabled SSL backends: OpenSSL

The test program shows an error:

* Protocol "sftp" not supported or disabled in libcurl

I tried to investigate this by myself and found this piece of code in libcurl's CMakeLists.txt

if(CURL_USE_LIBSSH2)
  find_package(LibSSH2)
  if(LIBSSH2_FOUND)
    list(APPEND CURL_LIBS ${LIBSSH2_LIBRARY})
    list(APPEND CMAKE_REQUIRED_INCLUDES "${LIBSSH2_INCLUDE_DIR}")
    include_directories("${LIBSSH2_INCLUDE_DIR}")
    set(USE_LIBSSH2 ON)
  endif()
endif()

It looks like LIBSSH2_FOUND variable is not defined, but LibSSH2_FOUND is defined instead.

Package and Environment Details

Conan profile

[settings] os=Windows os_build=Windows arch=x86_64 arch_build=x86_64 compiler=Visual Studio compiler.version=16 build_type=Release [options] [conf] [build_requires] [env]

Steps to reproduce

demo conanfile.txt:

[requires]
libcurl/7.87.0

[generators]
cmake_paths
cmake_find_package

[options]
libcurl:shared=False
libcurl:with_libssh2=True

CMakeLists.txt:

cmake_minimum_required(VERSION 3.0)
project(helloworld)
include(${CMAKE_BINARY_DIR}/conan_paths.cmake)
add_executable(helloworld curltest.cpp)
find_package(CURL)

if(TARGET CURL::CURL)
   target_link_libraries(helloworld CURL::CURL)
endif()

curltest.cpp: https://raw.githubusercontent.com/curl/curl/master/docs/examples/sftpget.c

Run commands:

mkdir build && cd build
conan install .. --build=missing
cmake .. -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Release
cmake --build .

Logs

Click to expand log ``` d:\Develop\test\curltestnew\build>conan install .. --build=missing Configuration: [settings] arch=x86_64 arch_build=x86_64 build_type=Release compiler=Visual Studio compiler.runtime=MD compiler.version=16 os=Windows os_build=Windows [options] [build_requires] [env] WARN: libssh2/1.10.0: requirement zlib/1.2.12 overridden by libcurl/7.87.0 to zlib/1.2.13 WARN: libssh2/1.10.0: requirement openssl/1.1.1q overridden by libcurl/7.87.0 to openssl/1.1.1s conanfile.txt: Installing package Requirements libcurl/7.87.0 from 'conancenter' - Cache libssh2/1.10.0 from 'conancenter' - Cache openssl/1.1.1s from 'conancenter' - Cache zlib/1.2.13 from 'conancenter' - Cache Packages libcurl/7.87.0:57770717f2f8ef2ecd2ce82277d49b112af7b265 - Build libssh2/1.10.0:43e6689fb8b8ea2f65323185d73a096f43967f1a - Cache openssl/1.1.1s:3fb49604f9c2f729b85ba3115852006824e72cab - Cache zlib/1.2.13:3fb49604f9c2f729b85ba3115852006824e72cab - Cache Installing (downloading, building) binaries... openssl/1.1.1s: Already installed! zlib/1.2.13: Already installed! libssh2/1.10.0: Already installed! libcurl/7.87.0: Copying sources to build folder libcurl/7.87.0: Building your package in C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265 libcurl/7.87.0: Generator txt created conanbuildinfo.txt libcurl/7.87.0: Calling generate() libcurl/7.87.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior libcurl/7.87.0: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior libcurl/7.87.0: Preset 'default' added to CMakePresets.json. Invoke it manually using 'cmake --preset default' libcurl/7.87.0: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE=C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265\build\generators\conan_toolchain.cmake -DCURL_CA_BUNDLE=auto -DCURL_CA_PATH=auto -DCMAKE_POLICY_DEFAULT_CMP0091=NEW' libcurl/7.87.0: Aggregating env generators libcurl/7.87.0: Calling build() libcurl/7.87.0: apply_conandata_patches(): No patches defined in conandata libcurl/7.87.0: CMake command: cmake -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="C:/Users/user/.conan/data/libcurl/7.87.0/_/_/build/57770717f2f8ef2ecd2ce82277d49b112af7b265/build/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265" -DCURL_CA_BUNDLE="auto" -DCURL_CA_PATH="auto" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" "C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265\src" -- Using Conan toolchain: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/build/57770717f2f8ef2ecd2ce82277d49b112af7b265/build/generators/conan_toolchain.cmake -- Conan toolchain: Setting BUILD_SHARED_LIBS = OFF -- Selecting Windows SDK version 10.0.22000.0 to target Windows 10.0.22621. -- The C compiler identification is MSVC 19.29.30147.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped -- Detecting C compile features -- Detecting C compile features - done -- curl version=[7.87.0] -- Found Perl: C:/Perl64/bin/perl.exe (found version "5.26.3") -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - not found -- Found Threads: TRUE -- Looking for getch in ws2_32; -- Looking for getch in ws2_32; - found -- Looking for getch in winmm;ws2_32 -- Looking for getch in winmm;ws2_32 - found -- Conan: Component target declared 'OpenSSL::Crypto' -- Conan: Component target declared 'OpenSSL::SSL' -- Conan: Target declared 'openssl::openssl' -- Conan: Including build module from 'C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/cmake/conan-official-openssl-variables.cmake' -- Looking for OPENSSL_IS_BORINGSSL -- Looking for OPENSSL_IS_BORINGSSL - not found -- LDAP needs to be enabled to support LDAPS -- Conan: Target declared 'ZLIB::ZLIB' -- Could NOT find LibPSL (missing: LIBPSL_LIBRARY LIBPSL_INCLUDE_DIR) -- Conan: Component target declared 'Libssh2::libssh2' -- Looking for include file windows.h -- Looking for include file windows.h - found -- Looking for include files windows.h, ws2tcpip.h -- Looking for include files windows.h, ws2tcpip.h - found -- Looking for 3 include files windows.h, ..., winsock2.h -- Looking for 3 include files windows.h, ..., winsock2.h - found -- Looking for 4 include files windows.h, ..., wincrypt.h -- Looking for 4 include files windows.h, ..., wincrypt.h - found -- Looking for 5 include files windows.h, ..., sys/filio.h -- Looking for 5 include files windows.h, ..., sys/filio.h - not found -- Looking for 5 include files windows.h, ..., sys/ioctl.h -- Looking for 5 include files windows.h, ..., sys/ioctl.h - not found -- Looking for 5 include files windows.h, ..., sys/resource.h -- Looking for 5 include files windows.h, ..., sys/resource.h - not found -- Looking for 7 include files windows.h, ..., sys/un.h -- Looking for 7 include files windows.h, ..., sys/un.h - not found -- Looking for 8 include files windows.h, ..., sys/xattr.h -- Looking for 8 include files windows.h, ..., sys/xattr.h - not found -- Looking for 8 include files windows.h, ..., arpa/tftp.h -- Looking for 8 include files windows.h, ..., arpa/tftp.h - not found -- Looking for 9 include files windows.h, ..., idn2.h -- Looking for 9 include files windows.h, ..., idn2.h - not found -- Looking for 9 include files windows.h, ..., ifaddrs.h -- Looking for 9 include files windows.h, ..., ifaddrs.h - not found -- Looking for 10 include files windows.h, ..., libgen.h -- Looking for 10 include files windows.h, ..., libgen.h - not found -- Looking for 10 include files windows.h, ..., locale.h -- Looking for 10 include files windows.h, ..., locale.h - found -- Looking for 11 include files windows.h, ..., netinet/tcp.h -- Looking for 11 include files windows.h, ..., netinet/tcp.h - not found -- Looking for linux/tcp.h -- Looking for linux/tcp.h - not found -- Looking for 11 include files windows.h, ..., poll.h -- Looking for 11 include files windows.h, ..., poll.h - not found -- Looking for 13 include files windows.h, ..., ssl.h -- Looking for 13 include files windows.h, ..., ssl.h - not found -- Looking for 13 include files windows.h, ..., stdatomic.h -- Looking for 13 include files windows.h, ..., stdatomic.h - not found -- Looking for 13 include files windows.h, ..., stdbool.h -- Looking for 13 include files windows.h, ..., stdbool.h - found -- Looking for 16 include files windows.h, ..., stropts.h -- Looking for 16 include files windows.h, ..., stropts.h - not found -- Looking for 17 include files windows.h, ..., unistd.h -- Looking for 17 include files windows.h, ..., unistd.h - not found -- Looking for 17 include files windows.h, ..., stddef.h -- Looking for 17 include files windows.h, ..., stddef.h - found -- Looking for 18 include files windows.h, ..., sys/utsname.h -- Looking for 18 include files windows.h, ..., sys/utsname.h - not found -- Check size of size_t -- Check size of size_t - done -- Check size of ssize_t -- Check size of ssize_t - failed -- Check size of long long -- Check size of long long - done -- Check size of long -- Check size of long - done -- Check size of int -- Check size of int - done -- Check size of __int64 -- Check size of __int64 - done -- Check size of time_t -- Check size of time_t - done -- Looking for fchmod -- Looking for fchmod - not found -- Looking for basename -- Looking for basename - not found -- Looking for socketpair -- Looking for socketpair - not found -- Looking for recv -- Looking for recv - found -- Looking for send -- Looking for send - found -- Looking for strtok_r -- Looking for strtok_r - not found -- Looking for strcasecmp -- Looking for strcasecmp - not found -- Looking for alarm -- Looking for alarm - not found -- Looking for getppid -- Looking for getppid - not found -- Looking for utimes -- Looking for utimes - not found -- Looking for getpwuid_r -- Looking for getpwuid_r - not found -- Looking for strtoll -- Looking for strtoll - found -- Looking for _strtoi64 -- Looking for _strtoi64 - found -- Looking for strerror_r -- Looking for strerror_r - not found -- Looking for siginterrupt -- Looking for siginterrupt - not found -- Looking for getaddrinfo -- Looking for getaddrinfo - found -- Looking for freeaddrinfo -- Looking for freeaddrinfo - found -- Looking for pipe -- Looking for pipe - not found -- Looking for ftruncate -- Looking for ftruncate - not found -- Looking for getpeername -- Looking for getpeername - found -- Looking for getsockname -- Looking for getsockname - found -- Looking for if_nametoindex -- Looking for if_nametoindex - not found -- Looking for getrlimit -- Looking for getrlimit - not found -- Looking for setlocale -- Looking for setlocale - found -- Looking for setmode -- Looking for setmode - found -- Looking for setrlimit -- Looking for setrlimit - not found -- Looking for snprintf -- Looking for snprintf - not found -- Looking for mach_absolute_time -- Looking for mach_absolute_time - not found -- Looking for inet_ntop -- Looking for inet_ntop - found -- Looking for inet_pton -- Looking for inet_pton - found -- Looking for fsetxattr -- Looking for fsetxattr - not found -- Check size of sa_family_t -- Check size of sa_family_t - failed -- Check size of ADDRESS_FAMILY -- Check size of ADDRESS_FAMILY - failed -- Performing Curl Test HAVE_FCNTL_O_NONBLOCK -- Performing Curl Test HAVE_FCNTL_O_NONBLOCK - Failed -- Performing Curl Test HAVE_IOCTLSOCKET -- Performing Curl Test HAVE_IOCTLSOCKET - Success -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO -- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO -- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO - Success -- Performing Curl Test HAVE_IOCTL_FIONBIO -- Performing Curl Test HAVE_IOCTL_FIONBIO - Failed -- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR -- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR - Failed -- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK -- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK - Failed -- Performing Curl Test HAVE_BOOL_T -- Performing Curl Test HAVE_BOOL_T - Success -- Performing Curl Test HAVE_FILE_OFFSET_BITS -- Performing Curl Test HAVE_FILE_OFFSET_BITS - Failed -- Performing Curl Test HAVE_VARIADIC_MACROS_C99 -- Performing Curl Test HAVE_VARIADIC_MACROS_C99 - Success -- Performing Curl Test HAVE_VARIADIC_MACROS_GCC -- Performing Curl Test HAVE_VARIADIC_MACROS_GCC - Failed -- Performing Curl Test HAVE_ATOMIC -- Performing Curl Test HAVE_ATOMIC - Failed -- Check size of off_t -- Check size of off_t - done -- Check size of curl_off_t -- Check size of curl_off_t - done -- Performing Curl Test HAVE_WIN32_WINNT -- Performing Curl Test HAVE_WIN32_WINNT - Success -- Found _WIN32_WINNT=0x0A00 -- Performing Curl Test HAVE_GLIBC_STRERROR_R -- Performing Curl Test HAVE_GLIBC_STRERROR_R - Failed -- Performing Curl Test HAVE_POSIX_STRERROR_R -- Performing Curl Test HAVE_POSIX_STRERROR_R - Failed -- Performing Curl Test HAVE_CLOCK_GETTIME_MONOTONIC -- Performing Curl Test HAVE_CLOCK_GETTIME_MONOTONIC - Failed -- Performing Curl Test HAVE_BUILTIN_AVAILABLE -- Performing Curl Test HAVE_BUILTIN_AVAILABLE - Failed -- Performing Test HAVE_MSG_NOSIGNAL -- Performing Test HAVE_MSG_NOSIGNAL - Failed -- Performing Test HAVE_STRUCT_TIMEVAL -- Performing Test HAVE_STRUCT_TIMEVAL - Success -- Check size of struct sockaddr_storage -- Check size of struct sockaddr_storage - done -- Performing Test HAVE_POLL_FINE -- Performing Test HAVE_POLL_FINE - Failed -- Looking for CryptAcquireContext -- Looking for CryptAcquireContext - found -- Enabled features: SSL IPv6 unixsockets libz AsynchDNS Largefile alt-svc HSTS NTLM NTLM_WB HTTPS-proxy unicode threadsafe -- Enabled protocols: DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS MQTT POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP -- Enabled SSL backends: OpenSSL -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_POLICY_DEFAULT_CMP0091 -- Build files have been written to: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/build/57770717f2f8ef2ecd2ce82277d49b112af7b265/build libcurl/7.87.0: CMake command: cmake --build "C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265\build" --config Release Microsoft (R) Build Engine версии 16.11.2+f32259642 для .NET Framework (C) Корпорация Майкрософт (Microsoft Corporation). Все права защищены. Checking Build System Building Custom Rule C:/Users/user/.conan/data/libcurl/7.87.0/_/_/build/57770717f2f8ef2ecd2ce82277d49b112af7b265/src/ lib/CMakeLists.txt altsvc.c amigaos.c asyn-ares.c asyn-thread.c base64.c bufref.c c-hyper.c cfilters.c conncache.c connect.c content_encoding.c cookie.c curl_addrinfo.c curl_des.c curl_endian.c curl_fnmatch.c curl_get_line.c curl_gethostname.c curl_gssapi.c curl_memrchr.c curl_multibyte.c curl_ntlm_core.c curl_ntlm_wb.c curl_path.c curl_range.c curl_rtmp.c curl_sasl.c curl_sspi.c curl_threads.c dict.c doh.c dynbuf.c easy.c easygetopt.c easyoptions.c escape.c file.c fileinfo.c fopen.c formdata.c ftp.c ftplistparser.c getenv.c getinfo.c gopher.c h2h3.c hash.c headers.c hmac.c hostasyn.c hostip.c hostip4.c hostip6.c hostsyn.c hsts.c http.c http2.c http_chunks.c http_digest.c http_negotiate.c http_ntlm.c http_proxy.c http_aws_sigv4.c idn.c if2ip.c imap.c inet_ntop.c inet_pton.c krb5.c ldap.c llist.c md4.c md5.c memdebug.c mime.c mprintf.c mqtt.c multi.c netrc.c nonblock.c noproxy.c openldap.c parsedate.c pingpong.c pop3.c progress.c psl.c rand.c rename.c rtsp.c select.c sendf.c setopt.c sha256.c share.c slist.c smb.c smtp.c socketpair.c socks.c socks_gssapi.c socks_sspi.c speedcheck.c splay.c strcase.c strdup.c strerror.c strtok.c strtoofft.c system_win32.c telnet.c tftp.c timediff.c timeval.c transfer.c url.c urlapi.c version.c version_win32.c warnless.c wildcard.c ws.c cleartext.c cram.c digest.c digest_sspi.c gsasl.c krb5_gssapi.c krb5_sspi.c ntlm.c ntlm_sspi.c oauth2.c spnego_gssapi.c spnego_sspi.c vauth.c bearssl.c gskit.c gtls.c hostcheck.c keylog.c mbedtls.c mbedtls_threadlock.c nss.c openssl.c rustls.c schannel.c schannel_verify.c sectransp.c vtls.c wolfssl.c x509asn1.c msh3.c ngtcp2.c quiche.c vquic.c libssh.c libssh2.c wolfssh.c libcurl.vcxproj -> C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265\build\ lib\Release\libcurl.lib Building Custom Rule C:/Users/user/.conan/data/libcurl/7.87.0/_/_/build/57770717f2f8ef2ecd2ce82277d49b112af7b265/src/ CMakeLists.txt libcurl/7.87.0: Package '57770717f2f8ef2ecd2ce82277d49b112af7b265' built libcurl/7.87.0: Build folder C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265\build libcurl/7.87.0: Generated conaninfo.txt libcurl/7.87.0: Generated conanbuildinfo.txt libcurl/7.87.0: Generating the package libcurl/7.87.0: Package folder C:\Users\user\.conan\data\libcurl\7.87.0\_\_\package\57770717f2f8ef2ecd2ce82277d49b112af7b265 libcurl/7.87.0: Calling package() libcurl/7.87.0: Copied 1 file: COPYING libcurl/7.87.0: Copied 1 '.pem' file: cacert.pem libcurl/7.87.0: CMake command: cmake --install "C:\Users\user\.conan\data\libcurl\7.87.0\_\_\build\57770717f2f8ef2ecd2ce82277d49b112af7b265\build" --config Release --prefix "C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265" -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/libcurl.lib -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/bin/curl-config -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/pkgconfig/libcurl.pc -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/curl.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/curlver.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/easy.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/header.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/mprintf.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/multi.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/options.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/stdcheaders.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/system.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/typecheck-gcc.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/urlapi.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/include/curl/websockets.h -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/cmake/CURL/CURLTargets.cmake -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/cmake/CURL/CURLTargets-release.cmake -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/cmake/CURL/CURLConfigVersion.cmake -- Installing: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/cmake/CURL/CURLConfig.cmake libcurl/7.87.0 package(): Packaged 2 files: curl-config, COPYING libcurl/7.87.0 package(): Packaged 12 '.h' files libcurl/7.87.0 package(): Packaged 1 '.lib' file: libcurl.lib libcurl/7.87.0 package(): Packaged 1 '.pem' file: cacert.pem libcurl/7.87.0: Package '57770717f2f8ef2ecd2ce82277d49b112af7b265' created libcurl/7.87.0: Created package revision 9b88f201f4331935c6cb8d5e8bcb6a77 conanfile.txt: Generator cmake_paths created conan_paths.cmake conanfile.txt: Generator cmake_find_package created FindCURL.cmake conanfile.txt: Generator cmake_find_package created FindLibssh2.cmake conanfile.txt: Generator cmake_find_package created FindOpenSSL.cmake conanfile.txt: Generator cmake_find_package created FindZLIB.cmake conanfile.txt: Generator txt created conanbuildinfo.txt conanfile.txt: Aggregating env generators conanfile.txt: Generated conaninfo.txt conanfile.txt: Generated graphinfo d:\Develop\test\curltestnew\build>cmake .. -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Release -- Selecting Windows SDK version 10.0.22000.0 to target Windows 10.0.22621. -- Conan: Using autogenerated FindCURL.cmake -- Library libcurl found C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/libcurl.lib -- Found: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/libcurl.lib -- Conan: Using autogenerated FindOpenSSL.cmake -- Library libssl found C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libssl.lib -- Found: C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libssl.lib -- Library libcrypto found C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libcrypto.lib -- Found: C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libcrypto.lib -- Library libcrypto found C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libcrypto.lib -- Found: C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libcrypto.lib -- Library libssl found C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libssl.lib -- Found: C:/Users/user/.conan/data/openssl/1.1.1s/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/libssl.lib -- Conan: Using autogenerated FindLibssh2.cmake -- Library libssh2 found C:/Users/user/.conan/data/libssh2/1.10.0/_/_/package/43e6689fb8b8ea2f65323185d73a096f43967f1a/lib/libssh2.lib -- Found: C:/Users/user/.conan/data/libssh2/1.10.0/_/_/package/43e6689fb8b8ea2f65323185d73a096f43967f1a/lib/libssh2.lib -- Conan: Using autogenerated FindZLIB.cmake -- Library zlib found C:/Users/user/.conan/data/zlib/1.2.13/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/zlib.lib -- Found: C:/Users/user/.conan/data/zlib/1.2.13/_/_/package/3fb49604f9c2f729b85ba3115852006824e72cab/lib/zlib.lib -- Conan: Dependency OpenSSL already found -- Library libssh2 found C:/Users/user/.conan/data/libssh2/1.10.0/_/_/package/43e6689fb8b8ea2f65323185d73a096f43967f1a/lib/libssh2.lib -- Found: C:/Users/user/.conan/data/libssh2/1.10.0/_/_/package/43e6689fb8b8ea2f65323185d73a096f43967f1a/lib/libssh2.lib -- Conan: Dependency ZLIB already found -- Library libcurl found C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/libcurl.lib -- Found: C:/Users/user/.conan/data/libcurl/7.87.0/_/_/package/57770717f2f8ef2ecd2ce82277d49b112af7b265/lib/libcurl.lib -- Configuring done -- Generating done -- Build files have been written to: D:/Develop/test/curltestnew/build d:\Develop\test\curltestnew\build> cmake --build . Microsoft (R) Build Engine версии 16.11.2+f32259642 для .NET Framework (C) Корпорация Майкрософт (Microsoft Corporation). Все права защищены. libssl.lib(rec_layer_d1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(rec_layer_d1.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libssl.lib(rec_layer_s3.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(rec_layer_s3.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libssl.lib(ssl_asn1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(ssl_asn1.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libssl.lib(ssl_ciph.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(ssl_ciph.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libssl.lib(ssl_err.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(ssl_err.obj)' or at 'D: \Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestnew \build\helloworld.vcxproj] libssl.lib(ssl_init.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(ssl_init.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libssl.lib(ssl_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(ssl_lib.obj)' or at 'D: \Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestnew \build\helloworld.vcxproj] libssl.lib(ssl_stat.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libssl.lib(ssl_stat.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libcrypto.lib(a_mbstr.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(a_mbstr.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(a_strex.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(a_strex.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(a_strnid.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(a_strnid.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(a_time.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(a_time.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(asn1_gen.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(asn1_gen.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(asn1_par.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(asn1_par.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(asn_mime.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(asn_mime.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(asn_mstbl.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(asn_mstbl.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(f_int.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(f_int.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libcrypto.lib(f_string.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(f_string.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(p8_pkey.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(p8_pkey.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(t_pkey.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(t_pkey.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(tasn_prn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(tasn_prn.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(x_bignum.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x_bignum.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(b_addr.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(b_addr.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(b_dump.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(b_dump.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(b_print.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(b_print.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(b_sock.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(b_sock.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(bio_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(bio_lib.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(bn_print.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(bn_print.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(cms_asn1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(cms_asn1.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(conf_api.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(conf_api.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(conf_def.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(conf_def.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(conf_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(conf_lib.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(conf_mod.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(conf_mod.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(cryptlib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(cryptlib.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(ct_prn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ct_prn.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(ct_x509v3.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ct_x509v3.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(dh_ameth.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(dh_ameth.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(dsa_ameth.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(dsa_ameth.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(dsa_asn1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(dsa_asn1.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(dso_err.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(dso_err.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(dso_win32.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(dso_win32.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(ec_ameth.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ec_ameth.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(ec_asn1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ec_asn1.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(eck_prn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(eck_prn.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(ecx_meth.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ecx_meth.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(eng_ctrl.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(eng_ctrl.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(eng_openssl.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(eng_openssl.o bj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\te st\curltestnew\build\helloworld.vcxproj] libcrypto.lib(err.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(err.obj)' or at 'D:\D evelop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestnew\b uild\helloworld.vcxproj] libcrypto.lib(err_prn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(err_prn.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(c_alld.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(c_alld.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(p5_crpt2.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(p5_crpt2.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(obj_dat.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(obj_dat.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(ocsp_asn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ocsp_asn.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(ocsp_ht.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ocsp_ht.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(ocsp_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ocsp_lib.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(ocsp_prn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ocsp_prn.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(v3_ocsp.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_ocsp.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(pem_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(pem_lib.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(p12_asn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(p12_asn.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(p12_kiss.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(p12_kiss.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(pk7_asn1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(pk7_asn1.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(rsa_ameth.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(rsa_ameth.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(rsa_asn1.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(rsa_asn1.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(rsa_err.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(rsa_err.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(rsa_pmeth.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(rsa_pmeth.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(srp_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(srp_lib.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(srp_vfy.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(srp_vfy.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(loader_file.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(loader_file.o bj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\te st\curltestnew\build\helloworld.vcxproj] libcrypto.lib(store_err.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(store_err.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(store_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(store_lib.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\c urltestnew\build\helloworld.vcxproj] libcrypto.lib(ts_err.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ts_err.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(ui_lib.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ui_lib.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(ui_openssl.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(ui_openssl.obj )' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test \curltestnew\build\helloworld.vcxproj] libcrypto.lib(by_dir.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(by_dir.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(by_file.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(by_file.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(t_x509.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(t_x509.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(x509_vfy.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x509_vfy.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(x509_vpm.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x509_vpm.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(x_crl.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x_crl.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libcrypto.lib(x_name.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x_name.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(x_req.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x_req.obj)' or at ' D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltestn ew\build\helloworld.vcxproj] libcrypto.lib(x_x509.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(x_x509.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(v3_addr.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_addr.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(v3_admis.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_admis.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(v3_alt.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_alt.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(v3_asid.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_asid.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(v3_cpols.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_cpols.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(v3_crld.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_crld.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curlt estnew\build\helloworld.vcxproj] libcrypto.lib(v3_ncons.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_ncons.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(v3_pci.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_pci.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(v3_pku.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_pku.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(v3_prn.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_prn.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(v3_sxnet.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_sxnet.obj)' o r at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\cur ltestnew\build\helloworld.vcxproj] libcrypto.lib(v3_utl.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(v3_utl.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] libcrypto.lib(e_capi.obj) : warning LNK4099: PDB 'ossl_static.pdb' was not found with 'libcrypto.lib(e_capi.obj)' or at 'D:\Develop\test\curltestnew\build\Debug\ossl_static.pdb'; linking object as if no debug info [D:\Develop\test\curltes tnew\build\helloworld.vcxproj] helloworld.vcxproj -> D:\Develop\test\curltestnew\build\Debug\helloworld.exe d:\Develop\test\curltestnew\build>Debug\helloworld.exe * Protocol "sftp" not supported or disabled in libcurl * Closing connection -1 curl told us 1 ```
SpaceIm commented 1 year ago

Can you try https://github.com/conan-io/conan-center-index/pull/15460 please?

zenden2k commented 1 year ago

Yes, it works