diff options
author | obache <obache@pkgsrc.org> | 2008-09-22 08:34:08 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-09-22 08:34:08 +0000 |
commit | 453bcf7a40ed697865910c26c8e0d8ce65136c72 (patch) | |
tree | fdbbd156bb148ef855746a0681d100d449655f49 /databases | |
parent | 73d606fe55991942eeac3522f10fbe8eabaaea41 (diff) | |
download | pkgsrc-453bcf7a40ed697865910c26c8e0d8ce65136c72.tar.gz |
py-sqlite2 does not require disable-threadsafe but expect to exist
load-extension these days. OKed by wiz to commit.
Bump PKGREVISION.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqlite3/Makefile | 5 | ||||
-rw-r--r-- | databases/sqlite3/Makefile.common | 9 |
2 files changed, 5 insertions, 9 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 4144bd55ff8..923e43abbc6 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -1,11 +1,14 @@ -# $NetBSD: Makefile,v 1.10 2007/11/15 10:39:18 rillig Exp $ +# $NetBSD: Makefile,v 1.11 2008/09/22 08:34:08 obache Exp $ PKG_DESTDIR_SUPPORT= user-destdir .include "Makefile.common" +PKGREVISION= 1 + INSTALLATION_DIRS+= ${PKGMANDIR}/man1 CONFIGURE_ARGS+= --disable-tcl +CONFIGURE_ARGS+= --enable-load-extension post-install: ${INSTALL_MAN} ${WRKSRC}/sqlite3.1 \ diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common index f520f32cfb9..cc7e2f81590 100644 --- a/databases/sqlite3/Makefile.common +++ b/databases/sqlite3/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.22 2008/09/07 14:04:01 adam Exp $ +# $NetBSD: Makefile.common,v 1.23 2008/09/22 08:34:08 obache Exp $ # used by databases/sqlite3-tcl/Makefile @@ -19,11 +19,4 @@ GNU_CONFIGURE= yes USE_TOOLS+= gmake USE_LIBTOOL= yes -# XXX: This option has been added for backwards compatibility after -# updating to 3.5.2. Without it, py-sqlite2 crashes when trying to -# access the mutex. The effect of this option is that multiple threads -# may not use a _common_ database connection. They may access the -# database through different database connections, though. -CONFIGURE_ARGS+= --disable-threadsafe - PKGCONFIG_OVERRIDE+= sqlite3.pc.in |