This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. The security issue fixed in this release, CVE-2013-0255, allows a previously authenticated user to crash the server by calling an internal function with invalid arguments. URL: http://www.postgresql.org/about/news/1446/ Security: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-0255
31 lines
779 B
Makefile
31 lines
779 B
Makefile
# New ports collection makefile for: PostgreSQL
|
|
# Date created: November 13, 1998
|
|
# Whom: Marc G. Fournier <scrappy@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTVERSION?= 9.0.12
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX?= -server
|
|
|
|
MAINTAINER?= pgsql@FreeBSD.org
|
|
|
|
ICU_PATCHFILE?= pg-900-icu-2010-09-19.diff.gz
|
|
ICU_EXTRAPATCH= ${FILESDIR}/extra-patch-icu4
|
|
BUILD_DIRS?= src/timezone src/backend src/backend/utils/mb/conversion_procs \
|
|
src/backend/snowball src/backend/replication/libpqwalreceiver \
|
|
src/bin/initdb src/bin/pg_ctl \
|
|
src/bin/pg_controldata src/bin/pg_resetxlog src/pl
|
|
INSTALL_DIRS?= ${BUILD_DIRS}
|
|
|
|
.if defined(CLIENT_ONLY)
|
|
MAN1= # no MAN1 for 9.0 only
|
|
|
|
MAN3= # no MAN3 for 9.0 only
|
|
|
|
MAN7= CREATE_CONSTRAINT_TRIGGER.7
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../postgresql91-server/Makefile"
|