https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234080
--- Comment #9 from Jan Beich <[email protected]> --- (In reply to Kevin Reinholz from comment #8) > /usr/local/bin/cargo: [...] > libssl.so.9 => /usr/local/bin/../lib/libssl.so.9 (0x8016da000) > libcrypto.so.9 => /usr/local/bin/../lib/libcrypto.so.9 (0x801755000) [...] > libssl.so.111 => /usr/lib/libssl.so.111 (0x8019a1000) > libcrypto.so.111 => /lib/libcrypto.so.111 (0x801a36000) Looks like a mix of in-base OpenSSL 1.1.1 (.so.111 under /usr/lib) and security/openssl (.so.9 under /usr/local/lib), so crashes are expected. Try rebuilding dependencies based on "ldd -a ..." output until only one copy of libssl/libcrypto remains. poudriere usually makes sure such an inconsistency doesn't happen. Note, simply installing security/openssl is the same as defining DEFAULT_VERSIONS+=ssl=openssl. Every port installed later will link against the port rather than in-base OpenSSL. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-gecko To unsubscribe, send any mail to "[email protected]"
