Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:37271 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80419 invoked from network); 28 Apr 2008 10:36:23 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Apr 2008 10:36:23 -0000 Authentication-Results: pb1.pair.com header.from=steph@zend.com; sender-id=softfail Authentication-Results: pb1.pair.com smtp.mail=steph@zend.com; spf=softfail; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain zend.com does not designate 64.97.136.129 as permitted sender) X-PHP-List-Original-Sender: steph@zend.com X-Host-Fingerprint: 64.97.136.129 smtpout0129.sc1.he.tucows.com Solaris 8 (1) Received: from [64.97.136.129] ([64.97.136.129:44775] helo=n064.sc1.he.tucows.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 49/97-37693-4A8A5184 for ; Mon, 28 Apr 2008 06:36:22 -0400 Received: from sc1-out02.emaildefenseservice.com (64.97.139.2) by n064.sc1.he.tucows.com (7.2.069.1) id 47697705013373F1; Mon, 28 Apr 2008 10:36:17 +0000 X-SpamScore: 2 X-Spamcatcher-Summary: 2,0,0,4d42c7ab830fe670,8521cdf7470f4556,steph@zend.com,-,RULES_HIT:152:355:379:539:540:541:542:543:567:599:601:973:988:989:1155:1156:1260:1277:1311:1313:1314:1345:1437:1515:1516:1518:1534:1540:1587:1593:1594:1676:1711:1730:1747:1766:1792:2073:2075:2078:2194:2199:2393:2559:2562:2693:2895:3027:3352:3622:3865:3866:3867:3868:3869:3870:3871:3872:3873:3874:5007:6261:7875:7974,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk, SPF:,MSBL:none,DNSBL:none,TSO:0 X-Spamcatcher-Explanation: Received: from foxbox (host86-130-56-54.range86-130.btcentralplus.com [86.130.56.54]) (Authenticated sender: steph.fox) by sc1-out02.emaildefenseservice.com (Postfix) with ESMTP; Mon, 28 Apr 2008 10:36:16 +0000 (UTC) Message-ID: <003401c8a91b$d6444a70$4001a8c0@foxbox> Reply-To: "Steph Fox" To: , "PHP Developers Mailing List" References: <10845a340804280251q48701c42qe02808a71044c04d@mail.gmail.com> Date: Mon, 28 Apr 2008 11:37:15 +0100 Organization: Zend Technologies MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="UTF-8"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Subject: Re: [PHP-DEV] Is there a difference in (n)make between windows and unix. From: steph@zend.com ("Steph Fox") Hi Richard, > What is happening is that the makefile has no knowledge of this header > file, so it can't be used to make anything. > > Is this expected behaviour? Please don't focus on just TSRM/readdir.h > as this was one file I picked at random (as I had edited it recently). Yes that's expected behaviour. If you change a header file you need to rebuild from scratch (make clean - no idea if that works, never tried it under doze - deleting Release_TS or Debug_TS and running config.nice should be enough. If you add a file you need to remember to add it in config.w32 (and config.m4), delete the build dirs and run buildconf. If you change something in .c source you can just run make and the existing build will be updated, but it's still best to do a clean build prior to committing those changes. - Steph