diff options
author | fhajny <fhajny@pkgsrc.org> | 2016-11-23 13:39:28 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2016-11-23 13:39:28 +0000 |
commit | 3b501fd06cebdb4e696fbcba5f965e15b06f48f6 (patch) | |
tree | b4589c19b503e9d2c0bce67ac5aef571b7dfce46 /databases | |
parent | 389fba0c613b178e1141589f96b13cbbe3117ddb (diff) | |
download | pkgsrc-3b501fd06cebdb4e696fbcba5f965e15b06f48f6.tar.gz |
Limit databases/postgresql-pgbench to PostgreSQL<9.5.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql-pgbench/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql-pgbench/Makefile b/databases/postgresql-pgbench/Makefile index 6629fef49f6..a43c7d34c5c 100644 --- a/databases/postgresql-pgbench/Makefile +++ b/databases/postgresql-pgbench/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2016/10/09 21:41:57 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2016/11/23 13:39:28 fhajny Exp $ PKGNAME= ${DISTNAME:C/-/${PGSQL_VERSION}-pgbench-/} PKGREVISION= 1 @@ -8,8 +8,8 @@ BUILD_DIRS+= contrib/pgbench .include "../../mk/pgsql.buildlink3.mk" # this one defines PGSQL_VERSION among others -# This package should be removed when PGSQL_VERSION_DEFAULT is bumped -.if !empty(PGSQL_VERSION:M95) +# This package is only to be used with PostgreSQL<9.5 +.if empty(PGSQL_VERSION:M9[1234]) PKG_SKIP_REASON+= \ "pgbench is now shipped with postgresql${PGSQL_VERSION}-client" .endif |