Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:25409 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 19514 invoked by uid 1010); 23 Aug 2006 13:33:33 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 19499 invoked from network); 23 Aug 2006 13:33:33 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 23 Aug 2006 13:33:33 -0000 Authentication-Results: pb1.pair.com header.from=lehmann@cnm.de; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=lehmann@cnm.de; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain cnm.de from 81.28.232.18 cause and error) X-PHP-List-Original-Sender: lehmann@cnm.de X-Host-Fingerprint: 81.28.232.18 relay1.mail.vrmd.de Linux 2.4/2.6 Received: from [81.28.232.18] ([81.28.232.18:60865] helo=relay1.mail.vrmd.de) by pb1.pair.com (ecelerity 2.1.1.8 r(12602M)) with ESMTP id 36/14-10120-B295CE44 for ; Wed, 23 Aug 2006 09:33:33 -0400 Received: from [217.83.62.96] (helo=[192.168.33.66]) by relay1.mail.vrmd.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.60) (envelope-from ) id 1GFsrI-0007CU-EQ for internals@lists.php.net; Wed, 23 Aug 2006 15:33:28 +0200 Message-ID: <44EC58B1.7000200@cnm.de> Date: Wed, 23 Aug 2006 15:31:29 +0200 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: en-us, en MIME-Version: 1.0 To: internals@lists.php.net Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Relay-User: lehmann@variomedia.de Subject: php-5.1.5 without sqlite3 support? From: lehmann@cnm.de (Marten Lehmann) Hello, compiling php ends with an error on my system: checking for sqlite_open in -lsqlite... no configure: error: wrong sqlite lib version or lib not found This is likely to happen, because I'm working with sqlite3 instead of sqlite 2.x: ldconfig -p | grep sqlite libsqlite3.so.0 (libc6,x86-64) => /usr/lib/libsqlite3.so.0 libsqlite3.so.0 (libc6,x86-64) => /usr/lib64/libsqlite3.so.0 libsqlite3.so (libc6,x86-64) => /usr/lib/libsqlite3.so libsqlite3.so (libc6,x86-64) => /usr/lib64/libsqlite3.so Sqlite 3.1.3 exists since Feb 19 2005, current release is 3.3.4. Why doesn't php support it? sqlite 2.x and sqlite 3.x have a different database format, so they are not compatible. All functions are prefixed with sqlite3, e.g. sqlite3_open instead of sqlite_open. Is someone working on a --with-sqlite3 option? Regards Marten