Lines 2-11
Link Here
|
2 |
# $FreeBSD: head/databases/sqlite3/Makefile 375778 2014-12-29 09:23:02Z riggs $ |
2 |
# $FreeBSD: head/databases/sqlite3/Makefile 375778 2014-12-29 09:23:02Z riggs $ |
3 |
|
3 |
|
4 |
PORTNAME= sqlite3 |
4 |
PORTNAME= sqlite3 |
5 |
PORTVERSION= 3.8.7.4 |
5 |
PORTVERSION= 3.8.8 |
6 |
CATEGORIES= databases |
6 |
CATEGORIES= databases |
7 |
MASTER_SITES= http://www.sqlite.org/2014/ http://www2.sqlite.org/2014/ http://www3.sqlite.org/2014/ |
7 |
MASTER_SITES= http://www.sqlite.org/2015/ http://www2.sqlite.org/2015/ http://www3.sqlite.org/2015/ |
8 |
DISTNAME= sqlite-autoconf-3080704 |
8 |
DISTNAME= sqlite-autoconf-3080800 |
9 |
|
9 |
|
10 |
MAINTAINER= pavelivolkov@gmail.com |
10 |
MAINTAINER= pavelivolkov@gmail.com |
11 |
COMMENT= SQL database engine in a C library |
11 |
COMMENT= SQL database engine in a C library |
Lines 27-33
Link Here
|
27 |
# Compilation Options For SQLite http://www.sqlite.org/compile.html |
27 |
# Compilation Options For SQLite http://www.sqlite.org/compile.html |
28 |
OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \ |
28 |
OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \ |
29 |
DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \ |
29 |
DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \ |
30 |
EXTENSION READLINE |
30 |
EXTENSION READLINE ARMOR STMT |
31 |
OPTIONS_SINGLE= RAMT |
31 |
OPTIONS_SINGLE= RAMT |
32 |
OPTIONS_RADIO= STAT |
32 |
OPTIONS_RADIO= STAT |
33 |
OPTIONS_GROUP= UNICODE RTREEG |
33 |
OPTIONS_GROUP= UNICODE RTREEG |
Lines 44-49
Link Here
|
44 |
UNLOCK_NOTIFY_DESC= Enable notification on unlocking |
44 |
UNLOCK_NOTIFY_DESC= Enable notification on unlocking |
45 |
EXTENSION_DESC= Allow loadable extensions |
45 |
EXTENSION_DESC= Allow loadable extensions |
46 |
|
46 |
|
|
|
47 |
# http://www.sqlite.org/compile.html#enable_api_armor |
48 |
ARMOR_DESC= Detect misuse of the API |
49 |
|
50 |
# http://www.sqlite.org/c3ref/stmt_scanstatus.html |
51 |
STMT_DESC= Prepared Statement Scan Status |
52 |
|
47 |
# http://www.sqlite.org/tempfiles.html#tempstore |
53 |
# http://www.sqlite.org/tempfiles.html#tempstore |
48 |
OPTIONS_SINGLE_RAMT= TS0 TS1 TS2 TS3 |
54 |
OPTIONS_SINGLE_RAMT= TS0 TS1 TS2 TS3 |
49 |
RAMT_DESC= Where to store temporary file |
55 |
RAMT_DESC= Where to store temporary file |
Lines 113-118
Link Here
|
113 |
URI_CPPFLAGS= -DSQLITE_USE_URI=1 |
119 |
URI_CPPFLAGS= -DSQLITE_USE_URI=1 |
114 |
URI_AUTHORITY_CPPFLAGS= -DSQLITE_ALLOW_URI_AUTHORITY=1 |
120 |
URI_AUTHORITY_CPPFLAGS= -DSQLITE_ALLOW_URI_AUTHORITY=1 |
115 |
DIRECT_READ_CPPFLAGS= -DSQLITE_DIRECT_OVERFLOW_READ=1 |
121 |
DIRECT_READ_CPPFLAGS= -DSQLITE_DIRECT_OVERFLOW_READ=1 |
|
|
122 |
ARMOR_CPPFLAGS= -DSQLITE_ENABLE_API_ARMOR=1 |
123 |
STMT_CPPFLAGS= -DSQLITE_ENABLE_STMT_SCANSTATUS=1 |
116 |
|
124 |
|
117 |
EXTENSION_CONFIGURE_ENABLE= dynamic-extensions |
125 |
EXTENSION_CONFIGURE_ENABLE= dynamic-extensions |
118 |
|
126 |
|