AC_PROTOTYPE_GETSOCKNAME
,
Loic Dachary <loic@senga.org>
GPLWithACException
This program is free software; you can
redistribute it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation. As a special exception, the respective
Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify
the configure scripts that are the output of Autoconf when processing the Macro. You
need not follow the terms of the
GNU General Public License when using or distributing such scripts
cryp.to ac-archive's Miscellaneous (released)
Requires the AC_PROTOTYPE macro.
Find the type of argument two and three of getsockname. User must
include the following in acconfig.h:
/* Type of second argument of getsockname */ #undef
GETSOCKNAME_ARG2
/* Type of third argument of getsockname */ #undef GETSOCKNAME_ARG3
AC_DEFUN([AC_PROTOTYPE_GETSOCKNAME],[
AC_PROTOTYPE(getsockname,
[
#include <sys/types.h>
#include <sys/socket.h>
],
[
int a = 0;
ARG2 * b = 0;
ARG3 * c = 0;
getsockname(a, b, c);
],
ARG2, [struct sockaddr, void],
ARG3, [socklen_t, size_t, int, unsigned int, long unsigned int])
])