summaryrefslogtreecommitdiff
path: root/databases/postgresql-plperl
diff options
context:
space:
mode:
authorjlam <jlam>2002-10-19 03:03:49 +0000
committerjlam <jlam>2002-10-19 03:03:49 +0000
commit0f3ee74a9b3fffa78c24617ca1c2acc91a0e0651 (patch)
treeb4cd9e150381c0242e2d33ffa75828f3b77e5d68 /databases/postgresql-plperl
parent80b0a371f25504fc11b8a864a8c871ce6cf921bf (diff)
downloadpkgsrc-0f3ee74a9b3fffa78c24617ca1c2acc91a0e0651.tar.gz
Update databases/postgresql to version 7.2.3.
This has a variety of fixes from 7.2.2, including fixes to prevent possible data loss. A dump/restore is *not* required for those running 7.2.X. Changes from version 7.2.2 include: Prevent possible compressed transaction log loss (Tom) Prevent non-superuser from increasing most recent vacuum info (Tom) Handle pre-1970 date values in newer versions of glibc (Tom) Fix possible hang during server shutdown Prevent spinlock hangs on SMP PPC machines (Tomoyuki Niijima) Fix pg_dump to properly dump FULL JOIN USING (Tom)
Diffstat (limited to 'databases/postgresql-plperl')
-rw-r--r--databases/postgresql-plperl/Makefile26
1 files changed, 7 insertions, 19 deletions
diff --git a/databases/postgresql-plperl/Makefile b/databases/postgresql-plperl/Makefile
index 371da858d17..5d9ba41e275 100644
--- a/databases/postgresql-plperl/Makefile
+++ b/databases/postgresql-plperl/Makefile
@@ -1,34 +1,22 @@
-# $NetBSD: Makefile,v 1.7 2002/07/22 22:00:51 jlam Exp $
+# $NetBSD: Makefile,v 1.8 2002/10/19 03:03:50 jlam Exp $
PKGNAME= postgresql-plperl-${BASE_VERS}
COMMENT= PL/Perl procedural language for the PostgreSQL backend
DEPENDS+= postgresql-server>=${BASE_VERS}:../../databases/postgresql-server
-DEPENDS+= {libperl>=${LIBPERL5_REQD},perl>=5.8.0}:../../lang/libperl
-LIBPERL5_REQD= ${PERL5_REQD}
-USE_BUILDLINK_ONLY= YES
+USE_BUILDLINK2= # defined
.include "../../databases/postgresql/Makefile.common"
-CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_DIR}
+CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
CONFIGURE_ARGS+= --with-perl
CONFIGURE_ENV+= PERL="${PERL5}"
-DIRS_TO_BUILD= src/pl/plperl
+BUILD_DIRS= ${WRKSRC}/src/pl/plperl
+MAKEFILE= GNUmakefile
-do-build:
-.for DIR in ${DIRS_TO_BUILD}
- cd ${WRKSRC}/${DIR} && ${SETENV} ${MAKE_ENV} \
- ${MAKE_PROGRAM} ${MAKE_FLAGS} ${ALL_TARGET}
-.endfor
+.include "../../databases/postgresql-lib/buildlink2.mk"
+.include "../../lang/libperl/buildlink2.mk"
-do-install:
-.for DIR in ${DIRS_TO_BUILD}
- cd ${WRKSRC}/${DIR} && ${SETENV} ${MAKE_ENV} \
- ${MAKE_PROGRAM} ${MAKE_FLAGS} ${INSTALL_TARGET}
-.endfor
-
-.include "../../databases/postgresql-lib/buildlink.mk"
-.include "../../lang/perl5/buildlink.mk"
.include "../../mk/bsd.pkg.mk"