pkgsrc/databases/postgresql73-pltcl/Makefile
jdolecek 0b19059448 Update to PostgreSQL 7.3.7.
Changes:
     * Prevent possible loss of committed transactions during crash
       Due to insufficient interlocking between transaction commit and
       checkpointing, it was possible for transactions committed just
       before the most recent checkpoint to be lost, in whole or in part,
       following a database crash and restart. This is a serious bug that
       has existed since PostgreSQL 7.1.
     * Remove asymmetrical word processing in tsearch (Teodor)
     * Properly schema-qualify function names when pg_dump'ing a CAST
2004-10-10 17:46:07 +00:00

24 lines
692 B
Makefile

# $NetBSD: Makefile,v 1.3 2004/10/10 17:46:07 jdolecek Exp $
PKGNAME= postgresql73-pltcl-${BASE_VERS}
PKGREVISION= # empty
COMMENT= PL/Tcl procedural language for the PostgreSQL backend
DEPENDS+= postgresql73-server>=${BASE_VERS}:../../databases/postgresql73-server
USE_BUILDLINK3= yes
.include "../postgresql73/Makefile.common"
CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
CONFIGURE_ARGS+= --with-tcl
CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
CONFIGURE_ENV+= TCLSH="${TCLSH}"
TCLSH= ${LOCALBASE}/bin/tclsh
BUILD_DIRS= ${WRKSRC}/src/pl/tcl
.include "../postgresql73-lib/buildlink3.mk"
.include "../../lang/tcl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"