Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:10928 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 91602 invoked by uid 1010); 6 Jul 2004 14:21:09 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 91438 invoked from network); 6 Jul 2004 14:21:09 -0000 Received: from unknown (HELO distance.intux.org) (213.239.198.8) by pb1.pair.com with SMTP; 6 Jul 2004 14:21:09 -0000 Received: (qmail 24400 invoked from network); 6 Jul 2004 14:15:49 -0000 Received: from unknown (HELO saiwala) (intux?org?fschaper@82.82.155.231) by distance.intux.org with SMTP; 6 Jul 2004 14:15:49 -0000 Message-ID: <014a01c46364$37866310$9d00a8c0@saiwala> To: "Robert Janeczek" , References: <20040706115712.41657.qmail@pb1.pair.com> Date: Tue, 6 Jul 2004 16:19:10 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Subject: Re: [PHP-DEV] still can`t build php5 win :( From: fschaper@intux.org ("Florian Schaper") Robert Janeczek wrote: > a 'while' ago i tried to build php5 on windows and were stuck with a > problem > http://groups.google.pl/groups?hl=pl&lr=&ie=UTF-8&selm=bsrgfo%24180r%241%40FreeBSD.csie.NCTU.edu.tw > > i`ve got fresh bindlib_w32 from cvs, build went fine (one warning: > d:\dev\php_source\bindlib_w32\res_send.c(920) : warning C4715: > 'res_send' : not all control paths return a value). Your problem is, that "isxdigit" does exists but #if !defined(isxdigit) /* XXX - could be a function */ doesn't work properly with your setting. Simply comment out the block in nsap_addr.c like follows: #if !defined(isxdigit) /* XXX - could be a function */ /* static int isxdigit(c) register int c; { return ((c >= '0') && (c <= '9')) || ((c >= 'A') && (c <= 'F')); } */ #endif