diff options
-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 |