diff options
author | lwhsu <lwhsu@FreeBSD.org> | 2010-08-23 15:32:50 +0800 |
---|---|---|
committer | lwhsu <lwhsu@FreeBSD.org> | 2010-08-23 15:32:50 +0800 |
commit | c3eaa1c31119126fde13043e28ca2e52b8841589 (patch) | |
tree | 63f9f9b267bbd76fb443c9bafb0bca4a6c0ba682 | |
parent | 57a4f2a5672a3f9cbee88b7b3f70fa782ab8190b (diff) | |
download | freebsd-ports-gnome-c3eaa1c31119126fde13043e28ca2e52b8841589.tar.gz freebsd-ports-gnome-c3eaa1c31119126fde13043e28ca2e52b8841589.tar.zst freebsd-ports-gnome-c3eaa1c31119126fde13043e28ca2e52b8841589.zip |
- Turn "Allow loadable extensions" option default on, the port like
databases/py-sqlite3 needs this to execute successfully.
PR: ports/149842
Submitted by: lwhsu
Approved by: Pavel I Volkov <pol AT opk.ru> (maintainer)
-rw-r--r-- | databases/sqlite3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index a5b987f48a71..77815bb674b3 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -7,7 +7,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.6.23.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/ DISTNAME= sqlite-${PORTVERSION} @@ -33,7 +33,7 @@ OPTIONS= DEBUG "Enable debugging & verbose explain" off \ TCLWRAPPER "Enable TCL wrapper" off \ METADATA "Enable column metadata" on \ THREADSAFE "Build thread-safe library" on \ - EXTENSION "Allow loadable extensions" off + EXTENSION "Allow loadable extensions" on .include <bsd.port.pre.mk> |