From owner-svn-ports-all@freebsd.org Mon Sep 28 02:20:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4724FA0A07B; Mon, 28 Sep 2015 02:20:04 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x22e.google.com (mail-pa0-x22e.google.com [IPv6:2607:f8b0:400e:c03::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 182826BB; Mon, 28 Sep 2015 02:20:04 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by padhy16 with SMTP id hy16so159256662pad.1; Sun, 27 Sep 2015 19:20:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=5xMNIwxi9OQa1j91RW3u223B5mfxBRoYypAb3SBmlJc=; b=eKECAGw/P3BKNZpeHdCyi5rpM0pLCrVZBN47Hs57fZX1oFo+aXcgjfF0NiRJNM602c iniT4uIEp0VlzIx2NEiHjo2XxqZ6EFq3rwB9enMGXKMukpV7XSYp9o9gCHbjelBdbC7q fcUWWjh2ldN+acz4EPojNAsn5Nf1HpHrwl8E3UD99OSLEZPCozgEfBV7e0T8NUzIP3Yt SR+CY5EwEQzcgIgnKtTcVdRixVzjym1nUzTDjcNld1LgsH/rbfT2iLaq5u3NBDNUcFHt 48tYXHBRMjWr+MVjTtYjwmhbgUzERckg8+zPN2d7c2RbIgdmriPJRAGTrxfQyDj8xtL1 WyrA== X-Received: by 10.66.220.2 with SMTP id ps2mr23105184pac.128.1443406803609; Sun, 27 Sep 2015 19:20:03 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01::2? (2001-44b8-31ae-7b01-0000-0000-0000-0002.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::2]) by smtp.gmail.com with ESMTPSA id fe8sm16104847pab.40.2015.09.27.19.20.00 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 27 Sep 2015 19:20:02 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r398061 - head/databases/sqlite3 References: <201509272158.t8RLwiJM002278@repo.freebsd.org> To: Jan Beich , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <5608A3CC.3020807@FreeBSD.org> Date: Mon, 28 Sep 2015 12:19:56 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101 Thunderbird/41.0 MIME-Version: 1.0 In-Reply-To: <201509272158.t8RLwiJM002278@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 02:20:04 -0000 On 28/09/2015 7:58 AM, Jan Beich wrote: > Author: jbeich > Date: Sun Sep 27 21:58:43 2015 > New Revision: 398061 > URL: https://svnweb.freebsd.org/changeset/ports/398061 > > Log: > databases/sqlite3: enable DBSTAT by default for firefox 41+ This change certainly solves for pkg users, but ports users can/may still inadvertently disable the option. Perhaps this use-case warrants a sqlite3-dbstat or sqlite3-firefox, until flavours/variants support lands. Thoughts? > PR: 200853 > Reviewed by: milios@ccsys.com > Approved by: Pavel Volkov (maintainer) > > OPTIONS_DEFAULT= FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \ > - EXTENSION TS1 UNICODE61 RTREE READLINE > -# SECURE_DELETE, UNLOCK_NOTIFY used by www/firefox, www/libxul > + EXTENSION TS1 UNICODE61 RTREE READLINE DBSTAT > +# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al. > # RTREE used by graphics/mapnik, databases/spatialite > > PLIST_FILES= bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \ ./koobs