summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Villiom Podlaski Christiansen <danchr@daimi.au.dk>2006-02-05 15:19:04 +0000
committerDiego Biurrun <diego@biurrun.de>2006-02-05 15:19:04 +0000
commit12fe88b460d28a226c629614358cd2e9bf757c0d (patch)
treebe6b7b4f243e34d0fc78a4c85be8b2f5aa8d2ad8
parent68b51e58ce73d99d2cd9bfa14cb7daaf4a74047e (diff)
Fix detection of IPv6 support on Darwin by ensuring that
IN6_IS_ADDR_MULTICAST gets an argument of type (const struct in6_addr *). patch by Dan Villiom Podlaski Christiansen, danchr.at.daimi.dot.au.dot.dk Originally committed as revision 4943 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 8159b0435b..f9c6f71b93 100755
--- a/configure
+++ b/configure
@@ -1234,7 +1234,7 @@ int main( void ) {
struct ipv6_mreq mreq6;
getaddrinfo(0,0,0,0);
getnameinfo(0,0,0,0,0,0,0);
- IN6_IS_ADDR_MULTICAST(0);
+ IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
}
EOF