Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb64c8b0

Browse files
committed
Fix use of OPENSSL in SSL tests if command is not found
`openssl` is an optional dependency in the meson build as it may not beinstalled in an environment even if SSL libraries are around. The mesonscripts assume that, but the SSL tests thought that it was a harddependency, causing a meson installation to fail if `openssl` could notbe found. Like similar tests that depend on external commands, and tobe consistent with ./configure for the SSL tests, this commit makes thecommand existence optional in the tests.Author: Tristan PartinDiscussion:https://postgr.es/m/CWSX6P5OUUM5.N7B74KQ06ZP6@neon.techBackpatch-through: 16
1 parent1b2c6b7 commitb64c8b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/test/ssl/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tests += {
77
'tap': {
88
'env': {
99
'with_ssl': ssl_library,
10-
'OPENSSL': openssl.path(),
10+
'OPENSSL': openssl.found() ? openssl.path() :'',
1111
},
1212
'tests': [
1313
't/001_ssltests.pl',

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp