Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:18269 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 65734 invoked by uid 1010); 22 Aug 2005 19:07:32 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 65719 invoked from network); 22 Aug 2005 19:07:32 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Aug 2005 19:07:32 -0000 X-Host-Fingerprint: 64.233.184.206 wproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.184.206:21456] helo=wproxy.gmail.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id C4/BF-33075-3722A034 for ; Mon, 22 Aug 2005 15:07:31 -0400 Received: by wproxy.gmail.com with SMTP id i22so41405wra for ; Mon, 22 Aug 2005 12:07:26 -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=PUuHthFne1T2JH/YMCRvL4H/Q3qbpvNwyB6Vx5NkPY+GNpDVeMN6E6uyvqOI5YCW/rI7DfEv4xMHX66ZymBwbMR99ZDAbI1hwrMmh1jQ38ulzxd3esCMz5PsgWoBM0P1vqVk5U5lY93VjjafY8hjQ2IWGKbdrxmRp/eX7Y7y5lU= Received: by 10.54.144.17 with SMTP id r17mr1600163wrd; Mon, 22 Aug 2005 12:07:25 -0700 (PDT) Received: by 10.54.153.5 with HTTP; Mon, 22 Aug 2005 12:07:25 -0700 (PDT) Message-ID: <4e89b426050822120735f0251f@mail.gmail.com> Date: Mon, 22 Aug 2005 15:07:25 -0400 To: Uwe Schindler Cc: PHP Developers Mailing List In-Reply-To: <6.2.3.4.0.20050822154331.0340eba8@127.0.0.1> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <6.2.3.4.0.20050822154331.0340eba8@127.0.0.1> Subject: Re: [PHP-DEV] PHP 5.1RC1 on Solaris From: kingwez@gmail.com (Wez Furlong) On 8/22/05, Uwe Schindler wrote: > /bin/sh: test: argument expected > gmake: [test] Error 1 (ignored) > pangaeaw@pans1:~/install/php-5.1.0RC1$ >=20 > (I think, this is the old problem with Solaris' test, that we fall > into every time... :) ) Changing a "test -e" to a "test -f" fixed this kind of problem for me when I was hacking on the dtrace stuff at oscon. =20 > when someone uses "--without-sqlite" it should automatically assume > also "--without-pdo-sqlite" No, because sqlite !=3D pdo_sqlite; they use different versions of the sqlite libraries, and it is perfectly valid to want to exclude sqlite (version 2) but include pdo_sqlite (version 3). In fact, I'm building a package that does just that right now. --Wez.