Cant update to Curl 7.76.1

I had the same issue, only on Centos 6 systems.
In the end I simply upgraded openssl manually, and to make sure it would not cause issues, I recompiled everything.
For me, everything is perfectly fine now.
Code:
cd /usr/src
wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz
tar -xzvf openssl-1.1.1k.tar.gz
cd openssl-1.1.1k
./config
make && make install
ln -s /usr/local/lib64/libssl.so.1.1 /usr/lib64/
ln -s /usr/local/lib64/libcrypto.so.1.1 /usr/lib64/
ln -s /usr/local/bin/openssl /usr/bin/openssl_latest
cd /usr/local/directadmin/custombuild
./build update
./build all d
 
@smtalk
Centos 8
7.76.1 it's work well,

I trying build 7.77.0 but got this error
Code:
configure: error: select TLS backend(s) or disable TLS with --without-ssl.

Select from these:

  --with-amissl
  --with-bearssl
  --with-gnutls
  --with-mbedtls
  --with-mesalink
  --with-nss
  --with-openssl (also works for BoringSSL and libressl)
  --with-rustls
  --with-schannel
  --with-secure-transport
  --with-wolfssl
maybe need --with-openssl on configure.curl ?
 
Yes, it's been added there in CB 2.0 rev. 2719. Try:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build curl

Thanks.
 
Centos 6
Curl 7.75.0 to 7.77.0

  • configure: error: select TLS backend(s) or disable TLS with --without-ssl.
maybe you have custom configure ?
cat /usr/local/directadmin/custombuild/custom/curl/configure.curl
 
maybe you have custom configure ?
cat /usr/local/directadmin/custombuild/custom/curl/configure.curl
Apparently that file did exist.
I don't recall making a custom config for curl. (I also see custom configs for other packages which I didn't create 🤨)

Anyway... this issue is resolved.
Thanks a lot.
 
Back
Top