aboutsummaryrefslogtreecommitdiff
path: root/m4/macros/type_recvfrom_fromlen.m4
blob: 71812bd29789ee7017cf5c4431144ef8b83c972e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dnl ######################################################################
dnl check the correct type for the 6th argument to recvfrom()
AC_DEFUN([AMU_TYPE_RECVFROM_FROMLEN],
[
AC_CACHE_CHECK(non-pointer type of 6th (fromlen) argument to recvfrom(),
ac_cv_recvfrom_fromlen,
[
# select the correct type
case "${host_os}" in
	linux* )
		ac_cv_recvfrom_fromlen="unsigned int" ;;
	aix[[1-3]]* )
		ac_cv_recvfrom_fromlen="int" ;;
	aix* )
		ac_cv_recvfrom_fromlen="size_t" ;;
	# old macosx used "int" but all newer ones use socklen_t
	macosx-10.[[0-3]]* )
		ac_cv_recvfrom_fromlen="int" ;;
	macosx* )
		ac_cv_recvfrom_fromlen="socklen_t" ;;
	*bsd* )
		ac_cv_recvfrom_fromlen="socklen_t" ;;
	* )
		ac_cv_recvfrom_fromlen="int" ;;
esac
])
AC_DEFINE_UNQUOTED(RECVFROM_FROMLEN_TYPE, $ac_cv_recvfrom_fromlen)
])
dnl ======================================================================