diff options
author | John Marino <marino@FreeBSD.org> | 2013-07-21 12:57:10 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2013-07-21 12:57:10 +0000 |
commit | 70d772231a4b4b8da385aa371d8532055c836497 (patch) | |
tree | 70ec0fc40437a962b9bc530b32c3b63dea517da7 | |
parent | 8ca8b944c6bbf2feb695d90f32b1a1e4374adf4b (diff) |
databases/slony1: Limit to pgsql version 9.1 and below
Slony1 will not build on PostgreSQL 9.2, so indicate this in the makefile.
Users should migrate to version 2 (databases/slonyIv2) as version 1.2
is no longer maintained.
PR: ports/179958
Submitted by: marino
Approved by: bapt (mentor), maintainer
Notes
Notes:
svn path=/head/; revision=323379
-rw-r--r-- | databases/slony1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/slony1/Makefile b/databases/slony1/Makefile index 5c2577f6c38a..dc62c6471e96 100644 --- a/databases/slony1/Makefile +++ b/databases/slony1/Makefile @@ -14,11 +14,11 @@ COMMENT= PostgreSQL master to multiple replicas replication system BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server GNU_CONFIGURE= yes -USES= bison +USES= bison gmake USE_PGSQL= yes -USE_GMAKE= yes USE_BZIP2= yes USE_RC_SUBR= slon +WANT_PGSQL_VER= 91- SUB_FILES= pkg-message slon-mkservice.sh SUB_LIST+= NAME=slon |