db8cb73458
Major enhancements in PostgreSQL 10 include: Logical replication using publish/subscribe Declarative table partitioning Improved query parallelism Significant general performance improvements Stronger password authentication based on SCRAM-SHA-256 Improved monitoring and control The above items are explained in more detail in the sections below.
20 lines
655 B
Makefile
20 lines
655 B
Makefile
# $NetBSD: Makefile,v 1.1 2017/10/23 20:33:50 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C/-/10-pltcl-/}
|
|
COMMENT= PL/Tcl procedural language for the PostgreSQL backend
|
|
|
|
DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
|
|
|
|
.include "../../databases/postgresql10/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-tcl
|
|
CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
|
|
CONFIGURE_ENV+= TCLSH="${TCLSH}"
|
|
TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
|
|
BUILD_MAKE_FLAGS= PGXS=1
|
|
|
|
BUILD_DIRS= src/pl/tcl
|
|
|
|
.include "../../databases/postgresql10-client/buildlink3.mk"
|
|
.include "../../lang/tcl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|