Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23051 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 22148 invoked by uid 1010); 30 Apr 2006 13:23:35 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 22132 invoked from network); 30 Apr 2006 13:23:35 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 30 Apr 2006 13:23:35 -0000 X-PHP-List-Original-Sender: kingwez@gmail.com X-Host-Fingerprint: 64.233.166.183 pproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.166.183:41397] helo=pproxy.gmail.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 89/9D-18514-75AB4544 for ; Sun, 30 Apr 2006 09:23:35 -0400 Received: by pproxy.gmail.com with SMTP id 57so2922938pya for ; Sun, 30 Apr 2006 06:23:33 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZGrcFroxtZsoB+O+Jd9VRAzgQlh+X5gNUgkJnPIIgXgsIyw1+vnKbwVCC3TN+f4+e08FidTrpcbJHWPRB5HbKFGlvU3PwyxljXU+FZfOPXiv/4SKESR5fGTCnVyb6F6pi9NJsP5pGShk++41c3R+Pa9A5QwI8h/zxHSMtUJxGDw= Received: by 10.35.78.13 with SMTP id f13mr2392445pyl; Sun, 30 Apr 2006 06:23:33 -0700 (PDT) Received: by 10.35.41.17 with HTTP; Sun, 30 Apr 2006 06:23:33 -0700 (PDT) Message-ID: <4e89b4260604300623mded05a3of1b2a867205424c2@mail.gmail.com> Date: Sun, 30 Apr 2006 09:23:33 -0400 To: "Steph Fox" Cc: internals In-Reply-To: <0ba601c66c4e$1f1b4e90$6602a8c0@foxbox> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <0ba601c66c4e$1f1b4e90$6602a8c0@foxbox> Subject: Re: [PATCH] win32, PDO and the SQLite build From: kingwez@gmail.com ("Wez Furlong") On 4/30/06, Steph Fox wrote: > The attached patch makes it possible to build either php_sqlite.dll witho= ut > the PDO dependency, or php_pdo_sqlite2.dll with the PDO dependency. That means that you end up with php_pdo_sqlite2.dll only in the official snapshot builds. > I'm hoping it'll mean you can consider enabling built-in sqlite by defaul= t > again, even if PDO isn't quite ready for that yet? It's got nothing to do with PDO "being ready". The only reason that the sqlite2 driver is part of the sqlite2 extension is because we include a bundled sqlite2 library. Rather than bundle, compile and load it twice (it's pretty large), we simply re-use the code from the sqlite extension. I still don't see why you think that you need everything to be compiled into PHP statically on windows--we ship *all* the binaries that you might need, and everybody knows how to edit php.ini to turn on the bits they are missing. --Wez.