Make sure RETSIGTYPE is properly defined
This commit is contained in:
parent
a634f64400
commit
a46f55b9de
@ -11,7 +11,7 @@ include Makefile.inc
|
|||||||
CFLAGS += -DWATT32 -DHAVE_AF_INET6 -DHAVE_PF_INET6 -DHAVE_FIONBIO \
|
CFLAGS += -DWATT32 -DHAVE_AF_INET6 -DHAVE_PF_INET6 -DHAVE_FIONBIO \
|
||||||
-DHAVE_STRUCT_IN6_ADDR -DHAVE_SOCKADDR_IN6_SIN6_SCOPE_ID \
|
-DHAVE_STRUCT_IN6_ADDR -DHAVE_SOCKADDR_IN6_SIN6_SCOPE_ID \
|
||||||
-DHAVE_SYS_TIME_H -DHAVE_STRUCT_SOCKADDR_IN6 -DHAVE_STRUCT_ADDRINFO \
|
-DHAVE_SYS_TIME_H -DHAVE_STRUCT_SOCKADDR_IN6 -DHAVE_STRUCT_ADDRINFO \
|
||||||
-DHAVE_SIGNAL_H -DHAVE_SIG_ATOMIC_T \
|
-DHAVE_SIGNAL_H -DHAVE_SIG_ATOMIC_T -DRETSIGTYPE='void' \
|
||||||
-DHAVE_ARPA_NAMESER_H -DNS_INADDRSZ=4 -DHAVE_RECV -DHAVE_SEND \
|
-DHAVE_ARPA_NAMESER_H -DNS_INADDRSZ=4 -DHAVE_RECV -DHAVE_SEND \
|
||||||
-DSEND_TYPE_ARG1='int' -DSEND_QUAL_ARG2='const' \
|
-DSEND_TYPE_ARG1='int' -DSEND_QUAL_ARG2='const' \
|
||||||
-DSEND_TYPE_ARG2='void*' -DSEND_TYPE_ARG3='int' \
|
-DSEND_TYPE_ARG2='void*' -DSEND_TYPE_ARG3='int' \
|
||||||
|
@ -125,6 +125,29 @@
|
|||||||
#undef HAVE_WS2TCPIP_H
|
#undef HAVE_WS2TCPIP_H
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* ---------------------------------------------------------------- */
|
||||||
|
/* TYPEDEF REPLACEMENTS */
|
||||||
|
/* ---------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* Define this if in_addr_t is not an available 'typedefed' type */
|
||||||
|
#define in_addr_t unsigned long
|
||||||
|
|
||||||
|
/* Define as the return type of signal handlers (int or void). */
|
||||||
|
#define RETSIGTYPE void
|
||||||
|
|
||||||
|
/* Define ssize_t if it is not an available 'typedefed' type */
|
||||||
|
#if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__)
|
||||||
|
#elif defined(_WIN64)
|
||||||
|
#define ssize_t __int64
|
||||||
|
#else
|
||||||
|
#define ssize_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to 'int' if socklen_t is not an available 'typedefed' type */
|
||||||
|
#ifndef HAVE_WS2TCPIP_H
|
||||||
|
#define socklen_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
/* STRUCT RELATED */
|
/* STRUCT RELATED */
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
|
@ -299,6 +299,8 @@ TYPE_SOCKADDR_STORAGE
|
|||||||
|
|
||||||
TYPE_SIG_ATOMIC_T
|
TYPE_SIG_ATOMIC_T
|
||||||
|
|
||||||
|
AC_TYPE_SIGNAL
|
||||||
|
|
||||||
CURL_CHECK_FUNC_RECV
|
CURL_CHECK_FUNC_RECV
|
||||||
|
|
||||||
CURL_CHECK_FUNC_SEND
|
CURL_CHECK_FUNC_SEND
|
||||||
|
@ -133,5 +133,14 @@ typedef int sig_atomic_t;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default return type for signal handlers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef RETSIGTYPE
|
||||||
|
#define RETSIGTYPE void
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif /* __SETUP_ONCE_H */
|
#endif /* __SETUP_ONCE_H */
|
||||||
|
|
||||||
|
@ -1633,6 +1633,8 @@ TYPE_SOCKADDR_STORAGE
|
|||||||
|
|
||||||
TYPE_SIG_ATOMIC_T
|
TYPE_SIG_ATOMIC_T
|
||||||
|
|
||||||
|
AC_TYPE_SIGNAL
|
||||||
|
|
||||||
AC_FUNC_SELECT_ARGTYPES
|
AC_FUNC_SELECT_ARGTYPES
|
||||||
|
|
||||||
CURL_CHECK_FUNC_RECV
|
CURL_CHECK_FUNC_RECV
|
||||||
@ -1643,7 +1645,7 @@ CURL_CHECK_MSG_NOSIGNAL
|
|||||||
|
|
||||||
dnl Checks for library functions.
|
dnl Checks for library functions.
|
||||||
dnl AC_PROG_GCC_TRADITIONAL
|
dnl AC_PROG_GCC_TRADITIONAL
|
||||||
AC_TYPE_SIGNAL
|
|
||||||
dnl AC_FUNC_VPRINTF
|
dnl AC_FUNC_VPRINTF
|
||||||
case $host in
|
case $host in
|
||||||
*msdosdjgpp)
|
*msdosdjgpp)
|
||||||
|
@ -47,6 +47,8 @@
|
|||||||
|
|
||||||
#define HAVE_FIONBIO 1
|
#define HAVE_FIONBIO 1
|
||||||
|
|
||||||
|
#define RETSIGTYPE void
|
||||||
|
|
||||||
#define HAVE_GETNAMEINFO 1
|
#define HAVE_GETNAMEINFO 1
|
||||||
#define GETNAMEINFO_QUAL_ARG1 const
|
#define GETNAMEINFO_QUAL_ARG1 const
|
||||||
#define GETNAMEINFO_TYPE_ARG1 struct sockaddr *
|
#define GETNAMEINFO_TYPE_ARG1 struct sockaddr *
|
||||||
|
@ -294,7 +294,7 @@
|
|||||||
#define in_addr_t unsigned long
|
#define in_addr_t unsigned long
|
||||||
|
|
||||||
/* Define as the return type of signal handlers (int or void). */
|
/* Define as the return type of signal handlers (int or void). */
|
||||||
/* #define RETSIGTYPE void */
|
#define RETSIGTYPE void
|
||||||
|
|
||||||
#if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__)
|
#if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__)
|
||||||
#elif defined(_WIN64)
|
#elif defined(_WIN64)
|
||||||
|
@ -278,13 +278,15 @@
|
|||||||
#define in_addr_t unsigned long
|
#define in_addr_t unsigned long
|
||||||
|
|
||||||
/* Define as the return type of signal handlers (int or void). */
|
/* Define as the return type of signal handlers (int or void). */
|
||||||
/* #define RETSIGTYPE void */
|
#define RETSIGTYPE void
|
||||||
|
|
||||||
/* Define to `unsigned' if size_t is not an available 'typedefed' type */
|
/* Define ssize_t if it is not an available 'typedefed' type */
|
||||||
/* #define size_t unsigned */
|
#if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__)
|
||||||
|
#elif defined(_WIN64)
|
||||||
/* Define to 'int' if ssize_t is not an available 'typedefed' type */
|
#define ssize_t __int64
|
||||||
|
#else
|
||||||
#define ssize_t int
|
#define ssize_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define to 'int' if socklen_t is not an available 'typedefed' type */
|
/* Define to 'int' if socklen_t is not an available 'typedefed' type */
|
||||||
#ifndef HAVE_WS2TCPIP_H
|
#ifndef HAVE_WS2TCPIP_H
|
||||||
|
@ -140,5 +140,14 @@ typedef int sig_atomic_t;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default return type for signal handlers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef RETSIGTYPE
|
||||||
|
#define RETSIGTYPE void
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif /* __SETUP_ONCE_H */
|
#endif /* __SETUP_ONCE_H */
|
||||||
|
|
||||||
|
@ -179,9 +179,6 @@ static void signalPipeClose(struct curl_llist *pipe);
|
|||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
/* not for WIN32 builds */
|
/* not for WIN32 builds */
|
||||||
|
|
||||||
#ifndef RETSIGTYPE
|
|
||||||
#define RETSIGTYPE void
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_SIGSETJMP
|
#ifdef HAVE_SIGSETJMP
|
||||||
extern sigjmp_buf curl_jmpenv;
|
extern sigjmp_buf curl_jmpenv;
|
||||||
#endif
|
#endif
|
||||||
|
@ -128,6 +128,28 @@
|
|||||||
/* Define to the function return type for send. */
|
/* Define to the function return type for send. */
|
||||||
#define SEND_TYPE_RETV int
|
#define SEND_TYPE_RETV int
|
||||||
|
|
||||||
|
/* ---------------------------------------------------------------- */
|
||||||
|
/* TYPEDEF REPLACEMENTS */
|
||||||
|
/* ---------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* Define this if in_addr_t is not an available 'typedefed' type */
|
||||||
|
#define in_addr_t unsigned long
|
||||||
|
|
||||||
|
/* Define as the return type of signal handlers (int or void). */
|
||||||
|
#define RETSIGTYPE void
|
||||||
|
|
||||||
|
#if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__)
|
||||||
|
#elif defined(_WIN64)
|
||||||
|
#define ssize_t __int64
|
||||||
|
#else
|
||||||
|
#define ssize_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to 'int' if socklen_t is not an available 'typedefed' type */
|
||||||
|
#ifndef HAVE_WS2TCPIP_H
|
||||||
|
#define socklen_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
/* STRUCT RELATED */
|
/* STRUCT RELATED */
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user