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

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to