Skip to content

openssl: fix build with LibreSSL < 2.9.1#5757

Closed
MarcelRaad wants to merge 1 commit into
curl:masterfrom
MarcelRaad:fix_libressl2.8_build
Closed

openssl: fix build with LibreSSL < 2.9.1#5757
MarcelRaad wants to merge 1 commit into
curl:masterfrom
MarcelRaad:fix_libressl2.8_build

Conversation

@MarcelRaad

Copy link
Copy Markdown
Member

SSL_CTX_add0_chain_cert and SSL_CTX_clear_chain_certs were
introduced in LibreSSL 2.9.1 [0].

This fixes the build with LibreSSL 2.8.0, as shipped with openSUSE Leap 15.2.

[0] libressl/openbsd@0db809e

`SSL_CTX_add0_chain_cert` and `SSL_CTX_clear_chain_certs` were
introduced in LibreSSL 2.9.1 [0].

[0] libressl/openbsd@0db809e

Closes
Comment thread lib/vtls/openssl.c
#if (OPENSSL_VERSION_NUMBER >= 0x1000200fL) /* 1.0.2 or later */
#if (OPENSSL_VERSION_NUMBER >= 0x1000200fL) && /* OpenSSL 1.0.2 or later */ \
!(defined(LIBRESSL_VERSION_NUMBER) && \
(LIBRESSL_VERSION_NUMBER < 0x2090100fL)) /* LibreSSL 2.9.1 or later */

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if its this version or later shouldn't the condition then be: LIBRESSL_VERSION_NUMBER >= 0x2090100fL ?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah no, I didn't really spot the negation in front of that second half... It just surprised me, but there's noting wrong there I think.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I tried to match the style of the other conditions in this file and had to look at them twice too!

@MarcelRaad MarcelRaad closed this in c71d8bb Aug 1, 2020
@MarcelRaad
MarcelRaad deleted the fix_libressl2.8_build branch August 1, 2020 15:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants