From 6a3002715eca4ae68e4d76606a6b3fd56d633741 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 13 Mar 2023 06:46:09 +0100 Subject: meson: Make auto the default of the ssl option The 'ssl' option is of type 'combo', but we add a choice 'auto' that simulates the behavior of a feature option. This way, openssl is used automatically by default if present, but we retain the ability to potentially select another ssl library. Author: Nazir Bilal Yavuz Discussion: https://www.postgresql.org/message-id/flat/ad65ffd1-a9a7-fda1-59c6-f7dc763c3051%40enterprisedb.com --- src/test/ssl/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/ssl') diff --git a/src/test/ssl/meson.build b/src/test/ssl/meson.build index a8d9a5424d4..4cda81f3bc2 100644 --- a/src/test/ssl/meson.build +++ b/src/test/ssl/meson.build @@ -6,7 +6,7 @@ tests += { 'bd': meson.current_build_dir(), 'tap': { 'env': { - 'with_ssl': get_option('ssl'), + 'with_ssl': ssl_library, 'OPENSSL': openssl.path(), }, 'tests': [ -- cgit v1.2.3