From db819595d35cbf23eb4eeba2ad0ac54ef7e19036 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Tue, 14 Mar 2000 13:44:01 +1100 Subject: - Include /usr/local/include and /usr/local/lib for systems that don't do it themselves - -R/usr/local/lib for Solaris - Fix RSAref detection - Fix IN6_IS_ADDR_V4MAPPED macro --- defines.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'defines.h') diff --git a/defines.h b/defines.h index 48e14fd25..831fbaa9e 100644 --- a/defines.h +++ b/defines.h @@ -239,8 +239,8 @@ typedef unsigned int size_t; #if !defined(IN6_IS_ADDR_V4MAPPED) # define IN6_IS_ADDR_V4MAPPED(a) \ - ((((uint32_t *) (a))[0] == 0) && (((uint32_t *) (a))[1] == 0) && \ - (((uint32_t *) (a))[2] == htonl (0xffff))) + ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \ + (((u_int32_t *) (a))[2] == htonl (0xffff))) #endif /* !defined(IN6_IS_ADDR_V4MAPPED) */ #if !defined(__GNUC__) || (__GNUC__ < 2) -- cgit v1.2.3