0642ae4b77
Two security issues have been fixed in this release which affect users of specific PostgreSQL features: CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service. CVE-2015-5288: The crypt( function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed. This update will also disable SSL renegotiation by default; previously, it was enabled by default. SSL renegotiation will be removed entirely in PostgreSQL versions 9.5 and later. URL: http://www.postgresql.org/about/news/1615/ Security: CVE-2015-5288 CVE-2015-5289
30 lines
727 B
Makefile
30 lines
727 B
Makefile
# Created by: Palle Girgensohn <girgen@partitur.se>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= postgresql
|
|
CATEGORIES= databases tcl
|
|
PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT}
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= Module for using Tcl to write SQL functions
|
|
|
|
MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server
|
|
|
|
WANT_PGSQL_VER?=9.1
|
|
|
|
USES+= tcl pgsql:${WANT_PGSQL_VER}
|
|
WANT_PGSQL= server
|
|
|
|
CONFIGURE_ARGS= --with-tcl --without-tk \
|
|
--with-tclconfig="${TCL_LIBDIR}" \
|
|
--with-includes="${TCL_INCLUDEDIR}"
|
|
|
|
CONFIGURE_ENV+= TCLSH="${TCLSH}"
|
|
MAKE_ENV+= TCL_INCDIR="${TCL_INCLUDEDIR}"
|
|
|
|
BUILD_DIRS= src/backend src/pl/tcl
|
|
INSTALL_DIRS= src/pl/tcl
|
|
SLAVE_ONLY= yes
|
|
COMPONENT= -pltcl
|
|
|
|
.include "${MASTERDIR}/Makefile"
|