diff options
author | pav <pav@FreeBSD.org> | 2008-03-12 07:34:09 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-03-12 07:34:09 +0800 |
commit | 7f03ce8c0f47ef793d8171667d23348d570f3f1d (patch) | |
tree | 7eb2512e34c07a2cf2e1619e46693d2c84072e11 /Mk | |
parent | c4f3f6f55fa81e04fd7b7ea1d0bad87d166f808a (diff) | |
download | freebsd-ports-gnome-7f03ce8c0f47ef793d8171667d23348d570f3f1d.tar.gz freebsd-ports-gnome-7f03ce8c0f47ef793d8171667d23348d570f3f1d.tar.zst freebsd-ports-gnome-7f03ce8c0f47ef793d8171667d23348d570f3f1d.zip |
- Fix typo (unclosed double-quote)
PR: ports/120618
Submitted by: Gennady Proskurin <gpr@nnz.ru>
- Change default PostgreSQL dependency from 8.1 to 8.2
PR: ports/120865
Submitted by: edwin
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.database.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mk/bsd.database.mk b/Mk/bsd.database.mk index 4189a52ef8f8..7041e0d25202 100644 --- a/Mk/bsd.database.mk +++ b/Mk/bsd.database.mk @@ -37,10 +37,10 @@ Database_Include_MAINTAINER= ports@FreeBSD.org # If no version is given (by the maintainer via the port or # by the user via defined variable), try to find the # currently installed version. Fall back to default if -# necessary (PostgreSQL-8.1 = 81). +# necessary (PostgreSQL-8.2 = 82). # DEFAULT_PGSQL_VER # - PostgreSQL default version. Can be overridden within a port. -# Default: 81. +# Default: 82. # WANT_PGSQL_VER # - Maintainer can set an arbitrary version of PostgreSQL by # using it. @@ -147,7 +147,7 @@ IGNORE= cannot install: unknown MySQL version: ${MYSQL_VER} .endif # USE_MYSQL .if defined(USE_PGSQL) -DEFAULT_PGSQL_VER?= 81 +DEFAULT_PGSQL_VER?= 82 PGSQL73_LIBVER= 3 PGSQL74_LIBVER= 3 PGSQL80_LIBVER= 4 @@ -311,7 +311,7 @@ IGNORE= cannot install: unknown bdb version: ${USE_BDB} _CHK_PLUS:= ${VER:S/+//} # INVALID_BDB_VER is specified as VER+ . if ${_CHK_PLUS} != "${VER}" -. if ${_BDB_VER} == "${_CHK_PLUS} +. if ${_BDB_VER} == "${_CHK_PLUS}" _BDB_IGNORE= yes . else . for VER_P in ${_DB_${_CHK_PLUS}P} |