Skip to content

Commit

Permalink
build(meson): allow using OpenSSL 3.0 (yhirose#1256)
Browse files Browse the repository at this point in the history
Following 0857eba cpp-httplib is fully compatible with OpenSSL versions newer than 1.1.1
  • Loading branch information
Tachi107 authored Apr 21, 2022
1 parent 348d032 commit 6929d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ message('cpp-httplib version ' + version)
deps = [dependency('threads')]
args = []

openssl_dep = dependency('openssl', version: ['>=1.1.1', '<1.1.2'], required: get_option('cpp-httplib_openssl'))
openssl_dep = dependency('openssl', version: '>=1.1.1', required: get_option('cpp-httplib_openssl'))
if openssl_dep.found()
deps += openssl_dep
args += '-DCPPHTTPLIB_OPENSSL_SUPPORT'
Expand Down

0 comments on commit 6929d90

Please sign in to comment.