summaryrefslogtreecommitdiff
path: root/databases/sqlite3
diff options
context:
space:
mode:
authorLev A. Serebryakov <lev@FreeBSD.org>2013-06-03 11:14:38 +0000
committerLev A. Serebryakov <lev@FreeBSD.org>2013-06-03 11:14:38 +0000
commit94bd6aa7285a63042b07e7862b9dafab4c297d69 (patch)
treecd5f011ccd33c497c8fa743efea46ca06c42317d /databases/sqlite3
parent- Update to 2.17.19 (diff)
Remove SQLLOG option. It needs code on "client side", and should not be used
for system-wide library. No standard ports could be built when this option is set. For example, "devel/subverison" could not detect SQLite when this option is set. PR: ports/179012 Approved by: Maintainer, Pavel Volkov <pavelivolkov [at] gmail.com>
Notes
Notes: svn path=/head/; revision=319770
Diffstat (limited to 'databases/sqlite3')
-rw-r--r--databases/sqlite3/Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile
index 24063a4174c8..8bab88c7d509 100644
--- a/databases/sqlite3/Makefile
+++ b/databases/sqlite3/Makefile
@@ -3,6 +3,7 @@
PORTNAME= sqlite3
PORTVERSION= 3.7.17
+PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sqlite.org/2013/ http://www2.sqlite.org/2013/ http://www3.sqlite.org/2013/
DISTNAME= sqlite-autoconf-3071700
@@ -25,7 +26,7 @@ MAKE_JOBS_UNSAFE= yes
# Compilation Options For SQLite http://www.sqlite.org/compile.html
OPTIONS_DEFINE= FTS3 ICU RTREE RAMTABLE UPD_DEL_LIMIT URI SOUNDEX METADATA \
- STAT3 DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY SQLLOG THREADSAFE \
+ STAT3 DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADSAFE \
EXTENSION
OPTIONS_DEFAULT= FTS3 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADSAFE EXTENSION
FTS3_DESC= Enable FTS3/4 (Full Text Search) module
@@ -41,7 +42,6 @@ DIRECT_READ_DESC= File is read directly from disk
MEMMAN_DESC= Allows it to release unused memory
SECURE_DELETE_DESC= Overwrite deleted information with zeros
UNLOCK_NOTIFY_DESC= Enable notification on unlocking
-SQLLOG_DESC= Allow logging operations
THREADSAFE_DESC= Build thread-safe library
EXTENSION_DESC= Allow loadable extensions
@@ -137,10 +137,6 @@ CPPFLAGS+= -DSQLITE_SECURE_DELETE=1
CPPFLAGS+= -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
.endif
-.if ${PORT_OPTIONS:MSQLLOG}
-CPPFLAGS+= -DSQLITE_ENABLE_SQLLOG=1
-.endif
-
.if ${PORT_OPTIONS:MMETADATA}
CPPFLAGS+= -DSQLITE_ENABLE_COLUMN_METADATA=1
.endif
@@ -160,9 +156,6 @@ CONFIGURE_ARGS+= --disable-dynamic-extensions
post-patch:
@${REINPLACE_CMD} '/^pkgconf/s,$${libdir},$${prefix}/libdata,' ${WRKSRC}/Makefile.in
-.if ${PORT_OPTIONS:MSQLLOG}
- @${ECHO_CMD} "void sqlite3_init_sqllog(void) { /* fake function */ }" >> ${WRKSRC}/shell.c
-.endif
post-build:
.if ${ARCH}=="i386"