diff options
author | jwise <jwise@pkgsrc.org> | 2004-06-22 20:43:56 +0000 |
---|---|---|
committer | jwise <jwise@pkgsrc.org> | 2004-06-22 20:43:56 +0000 |
commit | 959ae934b44ecf698c4ec88dcabfaf21868d6cec (patch) | |
tree | 7489802ac92c4e1d21de688779ef73a588982bc0 /databases | |
parent | 18253b48d0badd58cca1458f3799ba61722b1644 (diff) | |
download | pkgsrc-959ae934b44ecf698c4ec88dcabfaf21868d6cec.tar.gz |
Back out last `fix' which is nonsensical -- this package uses tclConfig.sh like
all other correctly written tcl-using packages, and gets the inclusion of
-lpthread (and -lm for that matter) exactly right. I use it regularly here.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql-pltcl/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/postgresql-pltcl/Makefile b/databases/postgresql-pltcl/Makefile index 31d4b7708cb..2325090e43a 100644 --- a/databases/postgresql-pltcl/Makefile +++ b/databases/postgresql-pltcl/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2004/06/22 18:43:15 drochner Exp $ +# $NetBSD: Makefile,v 1.15 2004/06/22 20:43:56 jwise Exp $ PKGNAME= postgresql-pltcl-${BASE_VERS} -PKGREVISION= 4 +PKGREVISION= 3 COMMENT= PL/Tcl procedural language for the PostgreSQL backend DEPENDS+= postgresql-server>=${BASE_VERS}:../../databases/postgresql-server @@ -12,13 +12,13 @@ USE_BUILDLINK3= yes CONFIGURE_ARGS+= --with-openssl=${SSLBASE} CONFIGURE_ARGS+= --with-tcl -CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tclnt}/lib" +CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" CONFIGURE_ENV+= TCLSH="${TCLSH}" TCLSH= ${LOCALBASE}/bin/tclsh BUILD_DIRS= ${WRKSRC}/src/pl/tcl .include "../postgresql-lib/buildlink3.mk" -.include "../../lang/libtcl-nothread/buildlink3.mk" +.include "../../lang/tcl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |