ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/mports/trunk/databases/sqlite3/Makefile
(Generate patch)

Comparing trunk/databases/sqlite3/Makefile (file contents):
Revision 15462 by laffer1, Tue Sep 17 03:15:41 2013 UTC vs.
Revision 16076 by laffer1, Sat Mar 22 02:39:56 2014 UTC

# Line 1 | Line 1
1   # $MidnightBSD$
2  
3   PORTNAME=       sqlite3
4 < PORTVERSION=    3.7.17
5 < CATEGORIES=     databases lang
6 < MASTER_SITES=   http://www.sqlite.org/2013/ \
7 <                http://www2.sqlite.org/2013/ \
8 <                http://www3.sqlite.org/2013/
9 < DISTNAME=       sqlite-autoconf-3071700
4 > PORTVERSION=    3.8.4.1
5 > CATEGORIES=     databases
6 > MASTER_SITES=   http://www.sqlite.org/2014/ http://www2.sqlite.org/2014/ http://www3.sqlite.org/2014/
7 > DISTNAME=       sqlite-autoconf-3080401
8  
9   MAINTAINER=     ports@MidnightBSD.org
10   COMMENT=        SQL database engine in a C library
11 +
12   LICENSE=        publicdom
13  
14   CONFLICTS=      sqlite34-[0-9]* sqlcipher-[0-9]*
# Line 21 | Line 20 | GNU_CONFIGURE= YES
20   MAKE_JOBS_UNSAFE=       yes
21  
22   # Compilation Options For SQLite http://www.sqlite.org/compile.html
23 < OPTIONS_DEFINE= FTS3 ICU RTREE RAMTABLE UPD_DEL_LIMIT URI SOUNDEX METADATA \
23 > OPTIONS_DEFINE= FTS3 ICU RTREE RAMTABLE UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \
24                  STAT3 DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADSAFE \
25                  EXTENSION
26   OPTIONS_DEFAULT=        FTS3 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADSAFE EXTENSION
# Line 31 | Line 30 | RTREE_DESC=            Enable R*Tree module (${RTREE_INT})
30   RAMTABLE_DESC=          Store temporary tables in RAM = ${TEMP_STORE}
31   UPD_DEL_LIMIT_DESC=     ORDER BY and LIMIT on UPDATE and DELETE
32   URI_DESC=               Enable use the URI filename
33 + URI_AUTHORITY_DESC=     Allow convert URL into a UNC
34   SOUNDEX_DESC=           Enables the soundex() SQL function
35   METADATA_DESC=          Enable column metadata
36   STAT3_DESC=             Help SQLite to chose a better query plan
# Line 78 | Line 78 | CPPFLAGS+=             -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1
78  
79   .if ${PORT_OPTIONS:MURI}
80   CPPFLAGS+=              -DSQLITE_USE_URI=1
81 + .endif
82 +
83 + .if ${PORT_OPTIONS:MURI_AUTHORITY}
84 + CPPFLAGS+=              -DSQLITE_ALLOW_URI_AUTHORITY=1
85   .endif
86  
87   .if ${PORT_OPTIONS:MSOUNDEX}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines