Hey Bob,

It's already fixed, so will be on the next tarball roll

Thanks!

I should have been more clear in my previous email, but would it be possible to also revert OPENSSL_VERSION_NUMBER back to 0x1000107fL (or 0x1000108fL)? This way LibreSSL would work as a drop-in replacement without applications needing to add explicit support for LibreSSL.

Right now, with OPENSSL_VERSION_NUMBER 0x20000000L, existing software must change:

   #if OPENSSL_VERSION_NUMBER >= 0x10002000L
       ...
   #endif

to:

   #if OPENSSL_VERSION_NUMBER >= 0x10002000L \
       && !defined LIBRESSL_VERSION_NUMBER
       ...
   #endif

in order to compile with LibreSSL, for no good reason.

Best regards,
Piotr Sikora

Reply via email to