From 8d8acecd29ace954881ea83b71a996de52678c01 Mon Sep 17 00:00:00 2001 From: Zsolt Parragi Date: Mon, 30 Sep 2024 18:50:53 +0100 Subject: [PATCH] Expose percona_ext as a meson variable As get_option returns an error for non existent variables, this is better for pg_tde --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index c8e5fcad4d448..b7bd7bf7c0435 100644 --- a/meson.build +++ b/meson.build @@ -430,6 +430,7 @@ meson_bin = find_program(meson_binpath, native: true) cdata.set('USE_ASSERT_CHECKING', get_option('cassert') ? 1 : false) cdata.set('USE_INJECTION_POINTS', get_option('injection_points') ? 1 : false) cdata.set('PERCONA_EXT', get_option('percona_ext') ? 1 : false) +percona_ext = get_option('percona_ext') blocksize = get_option('blocksize').to_int() * 1024