firstred / page-speed

Automatically exported from code.google.com/p/page-speed
0 stars 0 forks source link

Library does not build on Windows #109

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
minimize_dns_rule.cc currently uses inet_pton. This function is not available 
on windows, so our builds fail there.

We use inet_pton to get IPV6 support in addition to IPV4 support.

inet_addr is available on Windows but only supports IPV4.

Since we don't absolutely need IPV6 support, we will switch to inet_addr for 
the time being.

If we need to support IPV6 in the future we will need to revisit this and 
find a solution that works on Windows.

Original issue reported on code.google.com by bmcqu...@google.com on 26 Aug 2009 at 2:58

GoogleCodeExporter commented 9 years ago
This was fixed.

Original comment by bmcqu...@google.com on 21 Sep 2009 at 1:26