Language translations now possible!
sudo ln -s /usr/local/etc/ssl /etc
Fast and easy workaround for TC10 x86Code: [Select]sudo ln -s /usr/local/etc/ssl /etc
sudo ln -s /usr/local/etc/ssl /etc/ssl
Please send a pm to the last maintainer - nitram - requesting that they make the required changes.
Hi, neonix! Thanks for a good lesson ) Links are great! Everywhere and especially in TC!Did you meantCode: [Select]sudo ln -s /usr/local/etc/ssl /etc/ssl?
sudo ln -s /usr/local/etc/ssl /etc/ssltce-load -iw ca-certificates.tcztce-load -iw dillo.tcz
tce-load -iw wget compiletc squashfs-tools fltk-1.3-dev openssl-1.1.1-devcd /home/tc/usr/bin/wget http://www.dillo.org/download/dillo-3.0.5.tar.bz2tar xf *.tar.bz2cd dillo-3.0.5#In dpi/https.c replace "/etc/ssl/certs/" with "/usr/local/etc/ssl/certs/"export CFLAGS="-mtune=generic -Os -pipe"export CXXFLAGS="-mtune=generic -Os -pipe"export LDFLAGS="-Wl,-O1"./configure --prefix=/usr/local --enable-ssl --disable-ipv6 --localstatedir=/var
checking for libpng-config... /usr/local/bin/libpng16-configchecking for libpng version... 1.6.34checking openssl/ssl.h usability... yeschecking openssl/ssl.h presence... yeschecking for openssl/ssl.h... yeschecking for SSL_library_init in -lssl... noconfigure: WARNING: *** No libssl found. Disabling ssl support.***checking iconv.h usability... yeschecking iconv.h presence... yes
Maybe dillo is expecting openssl-1.0.x and not openssl-1.1.x?
There are two ways to initialize the OpenSSL library, and they depend on the version of the library you are using. If you are using OpenSSL 1.0.2 or below, then you would use SSL_library_init. If you are using OpenSSL 1.1.0 or above, then the library will initialize itself automatically. Optionally you can explicitly initialise it using OPENSSL_init_ssl or OPENSSL_init_crypto. A compatibility macro exists in ssl.h that maps SSL_library_init to OPENSSL_init_ssl, so you can continue to use SSL_library_init if desired.
https.c: In function 'handle_certificate_problem':https.c:479:38: error: dereferencing pointer to incomplete type 'X509' {aka 'struct x509_st'} 479 | if ((cn = strstr(remote_cert->name, "/CN=")) == NULL) { | ^~make[2]: *** [Makefile:769: https.o] Error 1make[2]: Leaving directory '/home/tc/dillo-3.0.5/dpi'make[1]: *** [Makefile:403: install-recursive] Error 1make[1]: Leaving directory '/home/tc/dillo-3.0.5'make: *** [Makefile:736: install-strip] Error 2tc@box:~/dillo-3.0.5$