diff options
author | Kalle Wallin <kaw@linux.se> | 2004-04-06 19:31:05 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-04-06 19:31:05 +0000 |
commit | 75dd1320fc506c0898c4380d98bfb6def5f16c61 (patch) | |
tree | e52c684fe2745c76c0a09b15ab269ce9089a39c8 | |
parent | f6ac83fe56f7ee27fd441ffcdffb449690f536fa (diff) | |
download | mpd-75dd1320fc506c0898c4380d98bfb6def5f16c61.tar.gz mpd-75dd1320fc506c0898c4380d98bfb6def5f16c61.tar.xz mpd-75dd1320fc506c0898c4380d98bfb6def5f16c61.zip |
Added a new test for socklen_t.
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@615 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | configure.ac | 11 | ||||
-rw-r--r-- | m4/socklen_t.m4 | 66 |
2 files changed, 74 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index b79934412..28961b1a2 100644 --- a/configure.ac +++ b/configure.ac @@ -20,9 +20,14 @@ CFLAGS="-Wall $CFLAGS" dnl dnl Check for types dnl -AC_CHECK_TYPE(socklen_t, - AC_DEFINE(HAVE_SOCKLEN_T, 1, socklen_t defined in sys/socket.h), -) +dnl AC_CHECK_TYPE(socklen_t, +dnl AC_DEFINE(HAVE_SOCKLEN_T, 1, socklen_t defined in sys/socket.h), +dnl ) + +AC_SOCKLEN_T + + + dnl diff --git a/m4/socklen_t.m4 b/m4/socklen_t.m4 new file mode 100644 index 000000000..dc9066719 --- /dev/null +++ b/m4/socklen_t.m4 @@ -0,0 +1,66 @@ + +dnl Like AC_TRY_EVAL but also errors out if the compiler generates +dnl _any_ output. Some compilers might issue warnings which we want +dnl to catch. +AC_DEFUN([AC_TRY_EVAL2], +[{ (eval echo configure:__oline__: \"[$]$1\") 1>&AC_FD_CC; dnl +(eval [$]$1) 2>&AC_FD_CC; _out=`eval [$]$1 2>&1` && test "x$_out" = x; }]) + + +dnl Like AC_TRY_COMPILE but calls AC_TRY_EVAL2 instead of AC_TRY_EVAL +AC_DEFUN([AC_TRY_COMPILE2], +[cat > conftest.$ac_ext <<EOF +[#]line __oline__ "configure" +#include "confdefs.h" +[$1] +int main(void) { +[$2] +; return 0; } +EOF +if AC_TRY_EVAL2(ac_compile); then + ifelse([$3], , :, [rm -rf conftest* + $3]) +else + echo "configure: failed program was:" >&AC_FD_CC + cat conftest.$ac_ext >&AC_FD_CC +ifelse([$4], , , [ rm -rf conftest* + $4 +])dnl +fi +rm -f conftest*]) + +dnl Determine what socket length (socklen_t) data type is +AC_DEFUN([AC_SOCKLEN_T], +[ +AC_MSG_CHECKING([for type of socket length (socklen_t)]) +AC_TRY_COMPILE2([ +#include <stddef.h> +#include <sys/types.h> +#include <sys/socket.h>],[ +(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[ + AC_MSG_RESULT(socklen_t *) + SOCKLEN_T=socklen_t],[ + AC_TRY_COMPILE2([ +#include <stddef.h> +#include <sys/types.h> +#include <sys/socket.h>],[ +(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[ + AC_MSG_RESULT(size_t *) + SOCKLEN_T=size_t],[ + AC_TRY_COMPILE2([ +#include <stddef.h> +#include <sys/types.h> +#include <sys/socket.h>],[ +(void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[ + AC_MSG_RESULT(int *) + SOCKLEN_T=int],[ + AC_MSG_WARN(could not determine) + SOCKLEN_T="unsigned int"])])]) + +if test "$SOCKLEN_T" = socklen_t; then + AC_DEFINE(HAVE_SOCKLEN_T, 1, socklen_t defined in sys/socket.h) +fi + +AC_DEFINE_UNQUOTED(SOCKLEN_T, $SOCKLEN_T, [Determine what socket length (socklen_t) data type is]) + +]) |