mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
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
23 lines
549 B
Makefile
23 lines
549 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: Wed Aug 25 00:13:57 CEST 2004
|
|
# Whom: Palle Girgensohn <girgen@pingpong.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# To depend on postgresql-client, set USE_PGSQL=yes.
|
|
# See Mk/bsd.port.mk for more info
|
|
|
|
PORTNAME= postgresql
|
|
PKGNAMESUFFIX= -client
|
|
PORTREVISION= 0
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql80-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces src/bin doc src/makefiles
|
|
CLIENT_ONLY= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|