Lines 6-15
Link Here
|
6 |
# |
6 |
# |
7 |
|
7 |
|
8 |
PORTNAME= sqlite3 |
8 |
PORTNAME= sqlite3 |
9 |
PORTVERSION= 3.7.8 |
9 |
PORTVERSION= 3.7.9 |
10 |
CATEGORIES= databases |
10 |
CATEGORIES= databases |
11 |
MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ |
11 |
MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ |
12 |
DISTNAME= sqlite-src-3070800 |
12 |
DISTNAME= sqlite-src-3070900 |
13 |
|
13 |
|
14 |
MAINTAINER= pavelivolkov@googlemail.com |
14 |
MAINTAINER= pavelivolkov@googlemail.com |
15 |
COMMENT= An SQL database engine in a C library |
15 |
COMMENT= An SQL database engine in a C library |
Lines 47-53
Link Here
|
47 |
URI "Enable use the URI filename" off \ |
47 |
URI "Enable use the URI filename" off \ |
48 |
SOUNDEX "Enables the soundex() SQL function" off \ |
48 |
SOUNDEX "Enables the soundex() SQL function" off \ |
49 |
METADATA "Enable column metadata" on \ |
49 |
METADATA "Enable column metadata" on \ |
50 |
STAT2 "Help SQLite to chose a better query plan" off \ |
50 |
STAT3 "Help SQLite to chose a better query plan" off \ |
|
|
51 |
DIRECT_READ "File is read directly from disk" off \ |
51 |
MEMMAN "Allows it to release unused memory" off \ |
52 |
MEMMAN "Allows it to release unused memory" off \ |
52 |
SECURE_DELETE "Overwrite deleted information with zeros" on \ |
53 |
SECURE_DELETE "Overwrite deleted information with zeros" on \ |
53 |
UNLOCK_NOTIFY "Enable notification on unlocking" on \ |
54 |
UNLOCK_NOTIFY "Enable notification on unlocking" on \ |
Lines 144-151
Link Here
|
144 |
CFLAGS+= -DSQLITE_SOUNDEX=1 |
145 |
CFLAGS+= -DSQLITE_SOUNDEX=1 |
145 |
.endif |
146 |
.endif |
146 |
|
147 |
|
147 |
.if defined(WITH_STAT2) |
148 |
.if defined(WITH_STAT3) |
148 |
CFLAGS+= -DSQLITE_ENABLE_STAT2=1 |
149 |
CFLAGS+= -DSQLITE_ENABLE_STAT3=1 |
|
|
150 |
.endif |
151 |
|
152 |
.if defined(WITH_DIRECT_READ) |
153 |
CFLAGS+= -DSQLITE_DIRECT_OVERFLOW_READ=1 |
149 |
.endif |
154 |
.endif |
150 |
|
155 |
|
151 |
.if defined(WITH_FTS3) |
156 |
.if defined(WITH_FTS3) |