From 8870b096cc0335739c48fe945500c8ae514e1dba Mon Sep 17 00:00:00 2001
From: Jacob Champion <jacob.champion@enterprisedb.com>
Date: Fri, 5 Sep 2025 16:39:08 -0700
Subject: [PATCH v8 1/7] meson: Include TAP tests in the configuration summary

...to make it obvious when they've been enabled. prove is added to the
executables list for good measure.

TODO: does Autoconf need something similar?

Per complaint by Peter Eisentraut.
---
 meson.build | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/meson.build b/meson.build
index c3834a9dc8f..9d1c7ffc702 100644
--- a/meson.build
+++ b/meson.build
@@ -3971,6 +3971,7 @@ summary(
     'bison': '@0@ @1@'.format(bison.full_path(), bison_version),
     'dtrace': dtrace,
     'flex': '@0@ @1@'.format(flex.full_path(), flex_version),
+    'prove': prove,
   },
   section: 'Programs',
 )
@@ -4007,3 +4008,11 @@ summary(
   section: 'External libraries',
   list_sep: ' ',
 )
+
+summary(
+  {
+    'tap': tap_tests_enabled,
+  },
+  section: 'Other features',
+  list_sep: ' ',
+)

base-commit: 0547aeae0fd6f6d03dd7499c84145ad9e3aa51b9
-- 
2.52.0

