diff options
author | recht <recht@pkgsrc.org> | 2004-10-31 13:23:03 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-10-31 13:23:03 +0000 |
commit | 64b8d9e90dcd5181115cc72bf62332c7a19eb8f3 (patch) | |
tree | 36b9aadd18dda2e267b3798ac5065f0d18812601 | |
parent | 0135e2b62abe0ecb600409ce0452fd7660036aac (diff) | |
download | pkgsrc-64b8d9e90dcd5181115cc72bf62332c7a19eb8f3.tar.gz |
fix build on IRIX
patch based upon the one Georg Schwarz provided in PR pkg/27402
-rw-r--r-- | lang/python20/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/python20/Makefile b/lang/python20/Makefile index cf110ba350a..e5d0e5a75f1 100644 --- a/lang/python20/Makefile +++ b/lang/python20/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2004/10/03 00:15:02 tv Exp $ +# $NetBSD: Makefile,v 1.22 2004/10/31 13:23:03 recht Exp $ # DISTNAME= Python-2.0.1 @@ -24,6 +24,8 @@ USE_BUILDLINK3= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --without-threads INSTALL_TARGET= altinstall +# ensure that the bsddb185 module is built on all platforms +USE_DB185= yes # Make sure having environment variable OPT doesn't affect the # installed module-building Makefile @@ -77,4 +79,5 @@ post-install: .include "../../devel/zlib/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" +.include "../../mk/bdb.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |