>>>   Bug #17174 Added IPv6 (AAAA record) support to dns_check_record()
>>> also added support to dns_get_record
>>
>>This might break builds on some platforms, as T_AAAA is not always
>> defined. See the comment in bug #19555.
>
>     Heh..I should read PHP-CVS folder first.. :)
>     Anyway, I just committed a fix for that prob.
>
Instead of:
#ifdef T_AAAA
/* blah blah blah */
#endif

Why not just put:
#ifndef T_AAAA
#define T_AAAA 28
#endif

in dns.h?  This should let the function continue working even on platforms
where T_AAAA isn't defined?

-Pollita



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to