mirror of https://github.com/getdnsapi/getdns.git
Fix build warnings about inet_ntop() not being declared on Win10/MinGW.
This commit is contained in:
parent
0895522734
commit
a70efd118d
|
@ -1274,7 +1274,7 @@ CFLAGS="$CFLAGS $LIBBSD_CFLAGS"
|
||||||
],[
|
],[
|
||||||
AC_MSG_WARN([libbsd not found or usable; using embedded code instead])
|
AC_MSG_WARN([libbsd not found or usable; using embedded code instead])
|
||||||
])
|
])
|
||||||
AC_CHECK_DECLS([strlcpy,arc4random,arc4random_uniform])
|
AC_CHECK_DECLS([inet_pton,inet_ntop,strlcpy,arc4random,arc4random_uniform])
|
||||||
AC_REPLACE_FUNCS(inet_pton)
|
AC_REPLACE_FUNCS(inet_pton)
|
||||||
AC_REPLACE_FUNCS(inet_ntop)
|
AC_REPLACE_FUNCS(inet_ntop)
|
||||||
AC_REPLACE_FUNCS(strlcpy)
|
AC_REPLACE_FUNCS(strlcpy)
|
||||||
|
@ -1449,11 +1449,11 @@ void SHA512_Final(uint8_t[SHA512_DIGEST_LENGTH], SHA512_CTX*);
|
||||||
unsigned char *SHA512(void* data, unsigned int data_len, unsigned char *digest);
|
unsigned char *SHA512(void* data, unsigned int data_len, unsigned char *digest);
|
||||||
#endif /* COMPAT_SHA512 */
|
#endif /* COMPAT_SHA512 */
|
||||||
|
|
||||||
#ifndef HAVE_INET_PTON
|
#ifndef HAVE_DECL_INET_PTON
|
||||||
int inet_pton(int af, const char* src, void* dst);
|
int inet_pton(int af, const char* src, void* dst);
|
||||||
#endif /* HAVE_INET_PTON */
|
#endif /* HAVE_INET_PTON */
|
||||||
|
|
||||||
#ifndef HAVE_INET_NTOP
|
#ifndef HAVE_DECL_INET_NTOP
|
||||||
const char *inet_ntop(int af, const void *src, char *dst, size_t size);
|
const char *inet_ntop(int af, const void *src, char *dst, size_t size);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue