diff options
author | recht <recht@pkgsrc.org> | 2004-07-24 22:45:14 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-07-24 22:45:14 +0000 |
commit | b7733957c95c19ace0166c3e436f957dfae653de (patch) | |
tree | 2a9af75a69e002a52d9f045391377b6b709f9e60 /databases/py-psycopg | |
parent | 0aab21f95e60c844c5c79c859564cb8348688b79 (diff) | |
download | pkgsrc-b7733957c95c19ace0166c3e436f957dfae653de.tar.gz |
Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL
version.
Diffstat (limited to 'databases/py-psycopg')
-rw-r--r-- | databases/py-psycopg/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/py-psycopg/Makefile b/databases/py-psycopg/Makefile index d3cc18edc8b..8cbcca5feb7 100644 --- a/databases/py-psycopg/Makefile +++ b/databases/py-psycopg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/07/22 18:00:37 drochner Exp $ +# $NetBSD: Makefile,v 1.15 2004/07/24 22:45:15 recht Exp $ # DISTNAME= psycopg-1.1.14 @@ -13,16 +13,16 @@ COMMENT= PostgreSQL database adapter for Python GNU_CONFIGURE= YES CONFIGURE_ARGS+= --with-python=${PYTHONBIN} CONFIGURE_ARGS+= \ - --with-postgres-includes=${BUILDLINK_PREFIX.postgresql-lib}/include/postgresql\ - --with-postgres-libraries=${BUILDLINK_PREFIX.postgresql-lib}/lib + --with-postgres-includes=${PGSQL_PREFIX}/include/postgresql\ + --with-postgres-libraries=${PGSQL_PREFIX}/lib ALL_TARGET= default USE_BUILDLINK3= yes PYTHON_VERSIONS_ACCEPTED= 23pth 22pth 21pth PY_PATCHPLIST= yes -.include "../../databases/postgresql-lib/buildlink3.mk" .include "../../lang/python/extension.mk" .include "../../time/py-mxDateTime/buildlink3.mk" +.include "../../mk/pgsql.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |