From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out.smtp-auth.no-ip.com (smtp-auth.no-ip.com [8.23.224.60]) by hurricane.the-brannons.com (Postfix) with ESMTPS id 6B62277AA1 for ; Sun, 1 Sep 2019 23:32:04 -0700 (PDT) X-No-IP: carhart.net@noip-smtp X-Report-Spam-To: abuse@no-ip.com Received: from phoenix.carhart.net (unknown [99.57.137.251]) (Authenticated sender: carhart.net@noip-smtp) by smtp-auth.no-ip.com (Postfix) with ESMTPA id 0720732C for ; Sun, 1 Sep 2019 23:32:03 -0700 (PDT) Received: from phoenix.carhart.net (carhart.net [127.0.0.1]) by phoenix.carhart.net (8.15.2/8.15.2) with ESMTP id x826W3T6036498 for ; Sun, 1 Sep 2019 23:32:03 -0700 Received: from localhost (kevin@localhost) by phoenix.carhart.net (8.15.2/8.15.2/Submit) with ESMTP id x826W3hJ036495 for ; Sun, 1 Sep 2019 23:32:03 -0700 X-Authentication-Warning: phoenix.carhart.net: kevin owned process doing -bs Date: Sun, 1 Sep 2019 23:32:03 -0700 (PDT) From: Kevin Carhart X-X-Sender: kevin@phoenix To: Edbrowse-dev@lists.the-brannons.com Subject: [edbrowse-dev] building on ubuntu Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) X-BeenThere: edbrowse-dev@edbrowse.org List-Id: Edbrowse Development List MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Hi Geoff I have hit these SSL/curl errors a few times when building on ubuntu and I saved some notes of how I got it to work. I am not sure I recognize ComSign_CA.pem so maybe you are hitting something a little different - not sure, but here is what I recorded in May: 20190519112839 - Ugh, openssl error with some combination of curl, wget and edbrowse. I did actually find out that it works if you send certain arguments to configure: cd ~ sudo apt-get build-dep curl wget http://curl.haxx.se/download/curl-7.46.0.tar.bz2 tar -xvjf curl-7.46.0.tar.bz2 cd curl-7.46.0 ./configure --with-nghttp2 --with-ssl --with-libssl-prefix=/usr/local/ssl make sudo make install sudo ldconfig 20190519112951 - Basically, you have to build both from source. For curl, you have to use the above. The whole thing is written up at https://askubuntu.com/questions/475670/how-to-build-curl-with-the-latest-openssl/475677