Newsgroups: php.internals,php.pecl.dev Path: news.php.net Xref: news.php.net php.internals:16604 php.pecl.dev:2460 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 69207 invoked by uid 1010); 11 Jun 2005 01:54:41 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 69192 invoked from network); 11 Jun 2005 01:54:41 -0000 Received: from unknown (HELO gmail.com) (127.0.0.1) by localhost with SMTP; 11 Jun 2005 01:54:41 -0000 X-Host-Fingerprint: 64.233.184.202 wproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.184.202:22734] helo=wproxy.gmail.com) by pb1.pair.com (ecelerity 1.2 r(5656M)) with SMTP id 73/AA-18818-0644AA24 for ; Fri, 10 Jun 2005 21:54:41 -0400 Received: by wproxy.gmail.com with SMTP id 57so826712wri for ; Fri, 10 Jun 2005 18:54:38 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=S7BfGrwWjti1o4QaRgI4C53Nvt3hkconKeihbDrlNMqQZ02uOTqguYrPa/eThIU1bS6W5KgLfEpwEuFXZ6Ct5F1QjyjUtl+DhBXKyMeoJ8OrtDtUuVSZhTClAyWb4Y8VvCP78iLz++uRG2Hsp7T9qjC63NLdxLjlFozSfL7wzo0= Received: by 10.54.116.2 with SMTP id o2mr1284393wrc; Fri, 10 Jun 2005 18:54:38 -0700 (PDT) Received: by 10.54.153.5 with HTTP; Fri, 10 Jun 2005 18:54:38 -0700 (PDT) Message-ID: <4e89b42605061018542a670549@mail.gmail.com> Date: Fri, 10 Jun 2005 21:54:38 -0400 Reply-To: Wez Furlong To: PHP Developers Mailing List , PECL Dev Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: tip for people building on win32 From: kingwez@gmail.com (Wez Furlong) Just thought I'd share this little bit of insight for people using the configure.js build system on win32. If you have your tree in the following configuration: php-src/ pecl/ and you only update php-src on a regular basis, you can get bitten. Some extensions live in both pecl and under php-src/ext. The build system will put pecl earlier in the include path, so you might find that your up-to-date core build is referencing headers from a stale pecl checkout. Solution: if you're updating from cvs, update both php-src and pecl, not just one or the other. --Wez.