From: Andres Freund Date: Sat, 5 Nov 2022 01:08:05 +0000 (-0700) Subject: meson: Mark PROVE as not required X-Git-Tag: REL_16_BETA1~1376 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab72a31f6cc58ceda97009a5bfae27bd566a3752;p=thirdparty%2Fpostgresql.git meson: Mark PROVE as not required In the meson build the prove binary is currently not even used. It will soon be, for PGXS compatibility, but even then we should build without it around. Author: Justin Pryzby Discussion: https://postgr.es/m/20221021034040.GT16921@telsasoft.com Discussion: https://postgr.es/m/20221104235412.GE16921@telsasoft.com --- diff --git a/meson.build b/meson.build index bfacbdc0af6..ce2f223a409 100644 --- a/meson.build +++ b/meson.build @@ -323,7 +323,7 @@ python = find_program(get_option('PYTHON'), required: true, native: true) flex = find_program(get_option('FLEX'), native: true, version: '>= 2.5.35') bison = find_program(get_option('BISON'), native: true, version: '>= 2.3') sed = find_program(get_option('SED'), 'sed', native: true) -prove = find_program(get_option('PROVE'), native: true) +prove = find_program(get_option('PROVE'), native: true, required: false) tar = find_program(get_option('TAR'), native: true) gzip = find_program(get_option('GZIP'), native: true) program_lz4 = find_program(get_option('LZ4'), native: true, required: false)