Expose percona_ext as a meson variable

As get_option returns an error for non existent variables, this is better for pg_tde
This commit is contained in:
Zsolt Parragi 2024-09-30 18:50:53 +01:00
parent 8ca2b2b47f
commit 8d8acecd29

View File

@ -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