1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

build: socklen_t is in sys/socket.h

This commit is contained in:
Andrew Tridgell 2010-03-23 12:20:11 +11:00
parent e2a9af0be4
commit 014c8736e5

View File

@ -145,7 +145,7 @@ def configure(conf):
conf.define('SHLIBEXT', "so", quote=True)
conf.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t')
conf.CHECK_TYPES('comparison_fn_t socklen_t bool')
conf.CHECK_TYPES('comparison_fn_t bool')
conf.CHECK_TYPE('_Bool', define='HAVE__Bool')
conf.CHECK_TYPE('int8_t', 'char')
@ -168,6 +168,7 @@ def configure(conf):
define='WORDS_BIGENDIAN')
conf.CHECK_TYPES('socklen_t', headers='sys/socket.h')
conf.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
conf.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
conf.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')