Re: [lftp] lftp-4.7.6 compilation error - lftp_ssl.cc:1069:17: error: aggregate 'X509_OBJECT obj' has incomplete type and cannot be defined

2017-02-16 Thread Justin Piszcz
Hello, It works, thanks! I've pulled git commit:7afda346f7040196b984cfbd924d220798942bf8 https://github.com/lavv17/lftp/pull/323/commits/7afda346f7040196b984cfbd924d220798942bf8 $ lftp --version LFTP | Version 4.7.6 | Copyright (c) 1996-2017 Alexander V. Lukyanov LFTP is free software: you can

Re: [lftp] lftp-4.7.6 compilation error - lftp_ssl.cc:1069:17: error: aggregate 'X509_OBJECT obj' has incomplete type and cannot be defined

2017-02-16 Thread Alexander V. Lukyanov
Please test "compile-with-openssl-1-1-0" branch from github. Thanks! -- Alexander. ___ lftp mailing list lftp@uniyar.ac.ru http://univ.uniyar.ac.ru/mailman/listinfo/lftp

Re: [lftp] lftp-4.7.6 compilation error - lftp_ssl.cc:1069:17: error: aggregate 'X509_OBJECT obj' has incomplete type and cannot be defined

2017-02-16 Thread Lars Viklund
Hi, Among other things, OpenSSL 1.1 apparently turns all previously inspectable structs opaque. They now require you to hold them by pointer, use accessor functions to access their fields, and use the new/free functions to make/destroy them. A quick Bing search revealed this wiki page: https