blob: 4c20319312d981da59be7af81265ec3387c7c8e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile.common,v 1.18 2008/03/04 10:46:55 wiz Exp $
# used by databases/sqlite3-tcl/Makefile
DISTNAME= sqlite-3.5.6
PKGNAME= ${DISTNAME:S/-/3-/}
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
http://www.sqlite.org/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.sqlite.org/
COMMENT= SQL Database Engine in a C Library
DISTINFO_FILE= ${.CURDIR}/../../databases/sqlite3/distinfo
PATCHDIR= ${.CURDIR}/../../databases/sqlite3/patches
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
|