Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:59294 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 75521 invoked from network); 1 Apr 2012 08:01:48 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 1 Apr 2012 08:01:48 -0000 Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 209.85.216.49 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 209.85.216.49 mail-qa0-f49.google.com Received: from [209.85.216.49] ([209.85.216.49:52711] helo=mail-qa0-f49.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id FF/D8-28591-C6B087F4 for ; Sun, 01 Apr 2012 04:01:48 -0400 Received: by qafi29 with SMTP id i29so1460673qaf.8 for ; Sun, 01 Apr 2012 01:01:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:x-gm-message-state; bh=SLn1ZrtU+mFEdMk18Gx3TrVRce/ojoIGEivAzJznPLE=; b=H3I6VfXlvNgmOT678py34frN1e4cSvljq/ieej+jJtwPwVF85KGQlT79uTpBFe2bvr nfuJrv7siUStFBXKAGcqDl429dLWWGwy7skz/GQHQcnwMynxWDANzRv0fRne3PcJtq+B AzsRYGOY9K5jk/8dB6Q9FXMTalrGFh/G3PZTXVPG/KvbjUXqatfOL3aMHHcVfYXOt4Tg RH4n0aUaH9uL9m1OL8GS2YlghEEyn5+eNM8KHBhcHWartLVpxR+5b0pihKIh5iFGp9wf gwkeN217FAbL8VuXQbI5bXHlUfsYHyQ9PBj+dhpehjeSBSbnYUVZiN7tXLV2kKPAJoky oJCA== Received: by 10.224.106.66 with SMTP id w2mr6091127qao.1.1333267305486; Sun, 01 Apr 2012 01:01:45 -0700 (PDT) Received: from [192.168.200.5] (c-50-131-44-225.hsd1.ca.comcast.net. [50.131.44.225]) by mx.google.com with ESMTPS id gy2sm2606643qab.10.2012.04.01.01.01.44 (version=SSLv3 cipher=OTHER); Sun, 01 Apr 2012 01:01:44 -0700 (PDT) Message-ID: <4F780B66.3050308@lerdorf.com> Date: Sun, 01 Apr 2012 01:01:42 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120310 Thunderbird/11.0 MIME-Version: 1.0 To: Helmut Tessarek CC: internals@lists.php.net References: <4F78080F.8070702@evermeet.cx> In-Reply-To: <4F78080F.8070702@evermeet.cx> X-Enigmail-Version: 1.4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQl9oeGJ2sRDxqbSYyA4YtQQG+vpsSIvzzhSVBtr3EnuP62bNLzpxIzzQ1JsY3wWUyYYABOl Subject: Re: [PHP-DEV] sqlite moved to PECL - but where is it From: rasmus@lerdorf.com (Rasmus Lerdorf) On 04/01/2012 12:47 AM, Helmut Tessarek wrote: > Hello, > > The removal of sqlite in PHP 5.4 has not been thoroughly thought through. > > In the documentation it says it has been moved to PECL. > Then you go to PECL and the only thing you find is the version from 2004, > which states that this package is not maintained and furthermore you find a > link to the former sqlite documentation on php.net, which then points you to > PECL... > > Round and round we go. > > This not the only problem. Copying the ext/sqlite directory from php 5.3.10 to > the php 5.4 tree and running a 'buildconf --force' does not work either. > > So now there are several web apps (e.g. Roundcube, Serendipity, ...) which do > not have an sqlite3 abstraction layer, which means that you are pretty much > screwed, if you use sqlite. > > Don't get me wrong, I don't have a problem with the fact that sqlite was > removed from the core, but at least there should be a) a correct documentation > how to get the functionality back and b) a way to get it working at all. Moved to pecl implies it is in the pecl repository: svn checkout https://svn.php.net/repository/pecl/sqlite/trunk sqlite cd sqlite phpize ./configure --with-php-config=/usr/local/bin/php-config make sudo make install