diff options
author | edwin <edwin@FreeBSD.org> | 2004-05-14 21:13:10 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-05-14 21:13:10 +0800 |
commit | a1d87053fae4e7f1c70dc0e8af27f8a2a18f752b (patch) | |
tree | 0e9c0c03641ffd2c2b0eb58deae1eb3f12d58dbc /databases/postgresql73-server | |
parent | d1923b5964b2fa726076af80029004776cf7208d (diff) | |
download | freebsd-ports-gnome-a1d87053fae4e7f1c70dc0e8af27f8a2a18f752b.tar.gz freebsd-ports-gnome-a1d87053fae4e7f1c70dc0e8af27f8a2a18f752b.tar.zst freebsd-ports-gnome-a1d87053fae4e7f1c70dc0e8af27f8a2a18f752b.zip |
[PATCH] databases/postgresql73: update to 7.3.6
* Revert erroneous changes in rule permissions checking
* Repair incorrect order of operations in GetNewTransactionId()
* Ensure configure selects -fno-strict-aliasing even when an
external value for CFLAGS is supplied
* Make pg_restore handle 64-bit off_t correctly
* Make contrib/dblink not assume that local and remote type OIDs
match (Joe)
* Quote connectby()'s start_with argument properly (Joe)
* Don't crash when a rowtype argument to a plpgsql function is NULL
* Avoid generating invalid character encoding sequences in corner
cases when planning LIKE operations
* Ensure text_position() cannot scan past end of source string in
multibyte cases (Korea PostgreSQL Users' Group)
* Fix index optimization and selectivity estimates for LIKE
operations on bytea columns (Joe)
This version, as with most minor versions, does not require
a dump/reload to put into place.
PR: ports/63698
Submitted by: Palle Girgensohn <girgen@pingpong.net>
Diffstat (limited to 'databases/postgresql73-server')
-rw-r--r-- | databases/postgresql73-server/Makefile | 8 | ||||
-rw-r--r-- | databases/postgresql73-server/distinfo | 13 |
2 files changed, 13 insertions, 8 deletions
diff --git a/databases/postgresql73-server/Makefile b/databases/postgresql73-server/Makefile index 733ffe973f03..fcbee0bfbae9 100644 --- a/databases/postgresql73-server/Makefile +++ b/databases/postgresql73-server/Makefile @@ -6,8 +6,8 @@ # PORTNAME?= postgresql -PORTVERSION?= 7.3.5 -PORTREVISION?= 1 +PORTVERSION?= 7.3.6 +PORTREVISION?= 0 CATEGORIES?= databases MASTER_SITES= ${MASTER_SITE_PGSQL} MASTER_SITE_SUBDIR= source/v${PORTVERSION} @@ -75,7 +75,7 @@ CONFLICTS= postgresql-7* .else PKGMESSAGE= ${FILESDIR}/pkg-message.server PKGMSG= ${PKGMESSAGE} -CONFLICTS= postgresql-7*client +CONFLICTS= postgresql-client PLIST_SUB+= SERVER="" INSTALL_TARGET+= install-all-headers MAKEFILE= GNUmakefile @@ -96,7 +96,7 @@ WITH_KRB5= yes .if defined(WITH_KRB5) CONFIGURE_ARGS+= --with-krb5="`${KRB5CONF} --prefix krb5`" LDFLAGS+= `${KRB5CONF} --libs krb5` -CONFIGURE_ENV= LDFLAGS="${LDFLAGS}" +CONFIGURE_ENV= LDFLAGS="${LDFLAGS}" .endif .if defined(WITH_TESTS) diff --git a/databases/postgresql73-server/distinfo b/databases/postgresql73-server/distinfo index c94ac2e17e17..8f5bbc84c55f 100644 --- a/databases/postgresql73-server/distinfo +++ b/databases/postgresql73-server/distinfo @@ -1,4 +1,9 @@ -MD5 (postgresql/postgresql-base-7.3.5.tar.bz2) = 071efb8cee72a62b4f0da478df39f08d -MD5 (postgresql/postgresql-docs-7.3.5.tar.bz2) = 7354a7c9cc5f1203586131e454df270e -MD5 (postgresql/postgresql-opt-7.3.5.tar.bz2) = d106ee6a4b0fb1d63eb51525ee8faed6 -MD5 (postgresql/postgresql-test-7.3.5.tar.bz2) = eaf4977a5e81e6bf8abe66762ef9aab5 +MD5 (postgresql/postgresql-base-7.3.6.tar.bz2) = 80b1649458ed7b0e765fb19bcb81c7aa +SIZE (postgresql/postgresql-base-7.3.6.tar.bz2) = 5647447 +MD5 (postgresql/postgresql-opt-7.3.6.tar.bz2) = 49b6faa1698c6d9f357e13236f7ca777 +SIZE (postgresql/postgresql-opt-7.3.6.tar.bz2) = 341096 +MD5 (postgresql/postgresql-test-7.3.6.tar.bz2) = fb943f1f4ab837a57a477378ae135806 +SIZE (postgresql/postgresql-test-7.3.6.tar.bz2) = 908268 +MD5 (postgresql/postgresql-docs-7.3.6.tar.bz2) = ec0cf85996049eb0180a2163c482c02c +SIZE (postgresql/postgresql-docs-7.3.6.tar.bz2) = 2337333 + |