Created attachment 201452 [details] news_nzbget.build.log nzbget has not been building on 12.0 for some time now. Missing symbol error, specifically CRYPTO_num_locks
Sorry, I forgot to note the make.conf: ## Define our default versions DEFAULT_VERSIONS+=perl5=5.26 DEFAULT_VERSIONS+=ruby=2.3 DEFAULT_VERSIONS+=python2=2.7 DEFAULT_VERSIONS+=python3=3.6 DEFAULT_VERSIONS+=lua=5.2 DEFAULT_VERSIONS+=pgsql=10 DEFAULT_VERSIONS+=mysql=10.1m DEFAULT_VERSIONS+=apache=2.4 DEFAULT_VERSIONS+=php=7.2 DEFAULT_VERSIONS+=samba=4.8 ## Use OpenSSL from ports. DEFAULT_VERSIONS+=ssl=openssl security_openssl_SET+=RC5
Did some additional tracking down, this is most definitely related to disabling SSLv3 in security/openssl, which has not been done in base. The inflection commit for security/openssl is r406060 adding the SSL3 disable option. Here's where it gets broken; OPTIONS+=SSL3 is on by default in security/openssl, so it should be working. I confirmed my options on security/openssl and reset to defaults. Same result; CRYPT_num_locks missing. Even though SSL3 is on in security/openssl. The symptom says "you disabled SSLv3" and the strings say as much with the output of security/openssl. But it was not disabled in the build. This may go to security/openssl itself.