Today in "Shouldn't we be past this shite": trying to compile Python to use a non-system version of OpenSSL.
* Can get Python to compile and work, but it pulls in the system OpenSSL.
* Can get Python to compile, link against the non-system OpenSSL, but can't find libpython.
* Can get Python to compile, link against libpython, but is unable to find libssl/libcrypto
Following up on my Python build woes last week, I finally got it sort of working.
In the end it was trying to use libraries that were in both `/usr/local/lib` (for `libpython`) and `/usr/local/lib64` (for `libssl` and `libcrypto`), but my existing configuration for the Python build was only looking in `/usr/local/lib`.
Next step is to figure out why Python isn't building/installing to `/usr/local/lib64`.