Skip to content

Commit 6929d90

Browse files
authored
build(meson): allow using OpenSSL 3.0 (#1256)
Following 0857eba cpp-httplib is fully compatible with OpenSSL versions newer than 1.1.1
1 parent 348d032 commit 6929d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ message('cpp-httplib version ' + version)
3333
deps = [dependency('threads')]
3434
args = []
3535

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

0 commit comments

Comments
 (0)