diff options
author | Kevin Bowling <kbowling@FreeBSD.org> | 2025-05-01 01:42:53 -0700 |
---|---|---|
committer | Kevin Bowling <kbowling@FreeBSD.org> | 2025-05-01 01:44:57 -0700 |
commit | 3438d062f0de5c906840a57bd4ae404fffb4a6e7 (patch) | |
tree | c7100db13457a3a1b5098bc2b05642f09b514b99 | |
parent | devel/p5-Escape-Houdini: New port (diff) |
databases/pg_store_plans: Ignore on pgsql > 16
Upstream created a broken new version, what a mess.. ignore for now on
pgsql > 16.
PR: 286165
Approved by: maintainer timeout
-rw-r--r-- | databases/pg_store_plans/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/databases/pg_store_plans/Makefile b/databases/pg_store_plans/Makefile index 7fcfe0aea4b1..357b8b114a44 100644 --- a/databases/pg_store_plans/Makefile +++ b/databases/pg_store_plans/Makefile @@ -18,4 +18,10 @@ USES= gmake pgsql:15+ WANT_PGSQL= server MAKE_ARGS= USE_PGXS=YES -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PGSQL_VER} > 16 +IGNORE Only supported up to pgsql 16 +.endif + +.include <bsd.port.post.mk> |