1d992c44d7
A critical fix repairs an error in ReadBuffer that can cause data loss due to overwriting recently-added pages. This applies to the 8.1 and 8.0 branches on all platforms. Note that this update might require a reindex of textual columns under certain conditions; please see UPDATING. Other fixes included are: -- Character string locale comparison bug. This may require a REINDEX on text column indexes in some locales, such as Hungarian. -- Prevent accidental changes of locale by plperl -- Two fixes for Japanese encodings -- Two fixes for COPY CSV -- Fixes for functions returning RECORD -- Fixes to autovacuum, dblink and pgcrypto
22 lines
551 B
Makefile
22 lines
551 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: Wed Nov 2 00:13:57 CET 2005
|
|
# Whom: Palle Girgensohn <girgen@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# To depend on postgresql-client, set USE_PGSQL=yes.
|
|
# See Mk/bsd.databases.mk for more info
|
|
|
|
PORTNAME= postgresql
|
|
PKGNAMESUFFIX= -client
|
|
PORTREVISION= 0
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql81-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces src/bin doc src/makefiles
|
|
CLIENT_ONLY= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|