2001-10-01 04:58:03 -04:00
|
|
|
dnl Check for how to set a socket to non-blocking state. There seems to exist
|
|
|
|
dnl four known different ways, with the one used almost everywhere being POSIX
|
|
|
|
dnl and XPG3, while the other different ways for different systems (old BSD,
|
|
|
|
dnl Windows and Amiga).
|
|
|
|
dnl
|
|
|
|
dnl There are two known platforms (AIX 3.x and SunOS 4.1.x) where the
|
|
|
|
dnl O_NONBLOCK define is found but does not work. This condition is attempted
|
|
|
|
dnl to get caught in this script by using an excessive number of #ifdefs...
|
|
|
|
dnl
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_NONBLOCKING_SOCKET],
|
2001-10-01 04:58:03 -04:00
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([non-blocking sockets style])
|
|
|
|
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
/* headers for O_NONBLOCK test */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
],[
|
|
|
|
/* try to compile O_NONBLOCK */
|
|
|
|
|
|
|
|
#if defined(sun) || defined(__sun__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
|
|
|
|
# if defined(__SVR4) || defined(__srv4__)
|
|
|
|
# define PLATFORM_SOLARIS
|
|
|
|
# else
|
|
|
|
# define PLATFORM_SUNOS4
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#if (defined(_AIX) || defined(__xlC__)) && !defined(_AIX4)
|
|
|
|
# define PLATFORM_AIX_V3
|
|
|
|
#endif
|
|
|
|
|
2003-10-06 18:03:11 -04:00
|
|
|
#if defined(PLATFORM_SUNOS4) || defined(PLATFORM_AIX_V3) || defined(__BEOS__)
|
2001-10-01 04:58:03 -04:00
|
|
|
#error "O_NONBLOCK does not work on this platform"
|
|
|
|
#endif
|
|
|
|
int socket;
|
|
|
|
int flags = fcntl(socket, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
],[
|
|
|
|
dnl the O_NONBLOCK test was fine
|
|
|
|
nonblock="O_NONBLOCK"
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_O_NONBLOCK, 1, [use O_NONBLOCK for non-blocking sockets])
|
2001-10-01 04:58:03 -04:00
|
|
|
],[
|
|
|
|
dnl the code was bad, try a different program now, test 2
|
|
|
|
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
/* headers for FIONBIO test */
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stropts.h>
|
|
|
|
],[
|
2003-10-05 04:35:55 -04:00
|
|
|
/* FIONBIO source test (old-style unix) */
|
|
|
|
int socket;
|
2001-10-01 04:58:03 -04:00
|
|
|
int flags = ioctl(socket, FIONBIO, &flags);
|
|
|
|
],[
|
|
|
|
dnl FIONBIO test was good
|
|
|
|
nonblock="FIONBIO"
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_FIONBIO, 1, [use FIONBIO for non-blocking sockets])
|
2001-10-01 04:58:03 -04:00
|
|
|
],[
|
|
|
|
dnl FIONBIO test was also bad
|
|
|
|
dnl the code was bad, try a different program now, test 3
|
|
|
|
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
/* headers for ioctlsocket test (cygwin?) */
|
|
|
|
#include <windows.h>
|
|
|
|
],[
|
|
|
|
/* ioctlsocket source code */
|
2003-10-05 04:35:55 -04:00
|
|
|
int socket;
|
2001-10-01 04:58:03 -04:00
|
|
|
int flags = ioctlsocket(socket, FIONBIO, &flags);
|
|
|
|
],[
|
|
|
|
dnl ioctlsocket test was good
|
|
|
|
nonblock="ioctlsocket"
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_IOCTLSOCKET, 1, [use ioctlsocket() for non-blocking sockets])
|
2001-10-01 04:58:03 -04:00
|
|
|
],[
|
2003-10-05 04:35:55 -04:00
|
|
|
dnl ioctlsocket didnt compile!, go to test 4
|
2001-10-01 04:58:03 -04:00
|
|
|
|
2003-10-05 04:35:55 -04:00
|
|
|
AC_TRY_LINK([
|
2001-10-01 04:58:03 -04:00
|
|
|
/* headers for IoctlSocket test (Amiga?) */
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
],[
|
|
|
|
/* IoctlSocket source code */
|
2003-10-05 04:35:55 -04:00
|
|
|
int socket;
|
2001-10-01 04:58:03 -04:00
|
|
|
int flags = IoctlSocket(socket, FIONBIO, (long)1);
|
|
|
|
],[
|
|
|
|
dnl ioctlsocket test was good
|
|
|
|
nonblock="IoctlSocket"
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_IOCTLSOCKET_CASE, 1, [use Ioctlsocket() for non-blocking sockets])
|
2001-10-01 04:58:03 -04:00
|
|
|
],[
|
2003-10-05 04:35:55 -04:00
|
|
|
dnl Ioctlsocket didnt compile, do test 5!
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
/* headers for SO_NONBLOCK test (BeOS) */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
],[
|
|
|
|
/* SO_NONBLOCK source code */
|
|
|
|
long b = 1;
|
|
|
|
int socket;
|
|
|
|
int flags = setsockopt(socket, SOL_SOCKET, SO_NONBLOCK, &b, sizeof(b));
|
|
|
|
],[
|
|
|
|
dnl the SO_NONBLOCK test was good
|
|
|
|
nonblock="SO_NONBLOCK"
|
|
|
|
AC_DEFINE(HAVE_SO_NONBLOCK, 1, [use SO_NONBLOCK for non-blocking sockets])
|
|
|
|
],[
|
|
|
|
dnl test 5 didnt compile!
|
2001-10-01 04:58:03 -04:00
|
|
|
nonblock="nada"
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_DISABLED_NONBLOCKING, 1, [disabled non-blocking sockets])
|
2003-10-05 04:35:55 -04:00
|
|
|
])
|
|
|
|
dnl end of fifth test
|
|
|
|
|
2001-10-01 04:58:03 -04:00
|
|
|
])
|
|
|
|
dnl end of forth test
|
|
|
|
|
|
|
|
])
|
|
|
|
dnl end of third test
|
|
|
|
|
|
|
|
])
|
|
|
|
dnl end of second test
|
|
|
|
|
|
|
|
])
|
|
|
|
dnl end of non-blocking try-compile test
|
|
|
|
AC_MSG_RESULT($nonblock)
|
|
|
|
|
|
|
|
if test "$nonblock" = "nada"; then
|
|
|
|
AC_MSG_WARN([non-block sockets disabled])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2001-08-20 03:10:28 -04:00
|
|
|
dnl Check for socklen_t: historically on BSD it is an int, and in
|
|
|
|
dnl POSIX 1g it is a type of its own, but some platforms use different
|
|
|
|
dnl types for the argument to getsockopt, getpeername, etc. So we
|
|
|
|
dnl have to test to find something that will work.
|
|
|
|
AC_DEFUN([TYPE_SOCKLEN_T],
|
|
|
|
[
|
|
|
|
AC_CHECK_TYPE([socklen_t], ,[
|
|
|
|
AC_MSG_CHECKING([for socklen_t equivalent])
|
|
|
|
AC_CACHE_VAL([curl_cv_socklen_t_equiv],
|
|
|
|
[
|
|
|
|
# Systems have either "struct sockaddr *" or
|
|
|
|
# "void *" as the second argument to getpeername
|
|
|
|
curl_cv_socklen_t_equiv=
|
|
|
|
for arg2 in "struct sockaddr" void; do
|
|
|
|
for t in int size_t unsigned long "unsigned long"; do
|
|
|
|
AC_TRY_COMPILE([
|
2003-10-30 02:08:45 -05:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2001-08-20 03:10:28 -04:00
|
|
|
#include <sys/types.h>
|
2003-10-30 02:08:45 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2001-08-20 03:10:28 -04:00
|
|
|
#include <sys/socket.h>
|
2003-10-30 02:08:45 -05:00
|
|
|
#endif
|
2001-08-20 03:10:28 -04:00
|
|
|
|
|
|
|
int getpeername (int, $arg2 *, $t *);
|
|
|
|
],[
|
|
|
|
$t len;
|
|
|
|
getpeername(0,0,&len);
|
|
|
|
],[
|
|
|
|
curl_cv_socklen_t_equiv="$t"
|
|
|
|
break
|
|
|
|
])
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
if test "x$curl_cv_socklen_t_equiv" = x; then
|
|
|
|
AC_MSG_ERROR([Cannot find a type to use in place of socklen_t])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
AC_MSG_RESULT($curl_cv_socklen_t_equiv)
|
|
|
|
AC_DEFINE_UNQUOTED(socklen_t, $curl_cv_socklen_t_equiv,
|
|
|
|
[type to use in place of socklen_t if not defined])],
|
|
|
|
[#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>])
|
|
|
|
])
|
|
|
|
|
2001-11-28 08:16:56 -05:00
|
|
|
dnl Check for in_addr_t: it is used to receive the return code of inet_addr()
|
|
|
|
dnl and a few other things. If not found, we set it to unsigned int, as even
|
|
|
|
dnl 64-bit implementations use to set it to a 32-bit type.
|
|
|
|
AC_DEFUN([TYPE_IN_ADDR_T],
|
|
|
|
[
|
|
|
|
AC_CHECK_TYPE([in_addr_t], ,[
|
|
|
|
AC_MSG_CHECKING([for in_addr_t equivalent])
|
|
|
|
AC_CACHE_VAL([curl_cv_in_addr_t_equiv],
|
|
|
|
[
|
|
|
|
curl_cv_in_addr_t_equiv=
|
2003-05-15 17:13:36 -04:00
|
|
|
for t in "unsigned long" int size_t unsigned long; do
|
2001-11-28 18:14:20 -05:00
|
|
|
AC_TRY_COMPILE([
|
2003-10-30 02:08:45 -05:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2001-11-28 18:14:20 -05:00
|
|
|
#include <sys/types.h>
|
2003-10-30 02:08:45 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2001-11-28 18:14:20 -05:00
|
|
|
#include <sys/socket.h>
|
2003-10-30 02:08:45 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
2001-11-28 18:14:20 -05:00
|
|
|
#include <arpa/inet.h>
|
2003-10-30 02:08:45 -05:00
|
|
|
#endif
|
2001-11-28 18:14:20 -05:00
|
|
|
],[
|
|
|
|
$t data = inet_addr ("1.2.3.4");
|
|
|
|
],[
|
|
|
|
curl_cv_in_addr_t_equiv="$t"
|
|
|
|
break
|
|
|
|
])
|
2001-11-28 08:16:56 -05:00
|
|
|
done
|
|
|
|
|
|
|
|
if test "x$curl_cv_in_addr_t_equiv" = x; then
|
|
|
|
AC_MSG_ERROR([Cannot find a type to use in place of in_addr_t])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
AC_MSG_RESULT($curl_cv_in_addr_t_equiv)
|
|
|
|
AC_DEFINE_UNQUOTED(in_addr_t, $curl_cv_in_addr_t_equiv,
|
|
|
|
[type to use in place of in_addr_t if not defined])],
|
|
|
|
[#include <sys/types.h>
|
2002-01-14 02:53:09 -05:00
|
|
|
#include <sys/socket.h>
|
2001-11-28 08:16:56 -05:00
|
|
|
#include <arpa/inet.h>])
|
|
|
|
])
|
|
|
|
|
2001-08-20 03:10:28 -04:00
|
|
|
dnl ************************************************************
|
|
|
|
dnl check for "localhost", if it doesn't exist, we can't do the
|
|
|
|
dnl gethostbyname_r tests!
|
|
|
|
dnl
|
|
|
|
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_WORKING_RESOLVER],[
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_CHECKING([if "localhost" resolves])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main () {
|
|
|
|
struct hostent *h;
|
|
|
|
h = gethostbyname("localhost");
|
|
|
|
exit (h == NULL ? 1 : 0); }],[
|
|
|
|
AC_MSG_RESULT(yes)],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_ERROR([can't figure out gethostbyname_r() since localhost doesn't resolve])
|
|
|
|
|
|
|
|
]
|
|
|
|
)
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl ************************************************************
|
|
|
|
dnl check for working getaddrinfo()
|
|
|
|
dnl
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_WORKING_GETADDRINFO],[
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_CACHE_CHECK(for working getaddrinfo, ac_cv_working_getaddrinfo,[
|
|
|
|
AC_TRY_RUN( [
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
void main(void) {
|
|
|
|
struct addrinfo hints, *ai;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
error = getaddrinfo("127.0.0.1", "8080", &hints, &ai);
|
|
|
|
if (error) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],[
|
|
|
|
ac_cv_working_getaddrinfo="yes"
|
|
|
|
],[
|
|
|
|
ac_cv_working_getaddrinfo="no"
|
|
|
|
],[
|
|
|
|
ac_cv_working_getaddrinfo="yes"
|
|
|
|
])])
|
|
|
|
if test "$ac_cv_working_getaddrinfo" = "yes"; then
|
|
|
|
AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if getaddrinfo exists and works])
|
|
|
|
AC_DEFINE(ENABLE_IPV6, 1, [Define if you want to enable IPv6 support])
|
|
|
|
|
|
|
|
IPV6_ENABLED=1
|
|
|
|
AC_SUBST(IPV6_ENABLED)
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_LOCALTIME_R],
|
2001-08-20 03:10:28 -04:00
|
|
|
[
|
|
|
|
dnl check for a few thread-safe functions
|
|
|
|
AC_CHECK_FUNCS(localtime_r,[
|
|
|
|
AC_MSG_CHECKING(whether localtime_r is declared)
|
|
|
|
AC_EGREP_CPP(localtime_r,[
|
|
|
|
#include <time.h>],[
|
|
|
|
AC_MSG_RESULT(yes)],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING(whether localtime_r with -D_REENTRANT is declared)
|
|
|
|
AC_EGREP_CPP(localtime_r,[
|
|
|
|
#define _REENTRANT
|
|
|
|
#include <time.h>],[
|
|
|
|
AC_DEFINE(NEED_REENTRANT)
|
|
|
|
AC_MSG_RESULT(yes)],
|
|
|
|
AC_MSG_RESULT(no))])])
|
|
|
|
])
|
|
|
|
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_INET_NTOA_R],
|
2001-08-20 03:10:28 -04:00
|
|
|
[
|
|
|
|
dnl determine if function definition for inet_ntoa_r exists.
|
|
|
|
AC_CHECK_FUNCS(inet_ntoa_r,[
|
|
|
|
AC_MSG_CHECKING(whether inet_ntoa_r is declared)
|
|
|
|
AC_EGREP_CPP(inet_ntoa_r,[
|
|
|
|
#include <arpa/inet.h>],[
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_INET_NTOA_R_DECL, 1, [inet_ntoa_r() is declared])
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_RESULT(yes)],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING(whether inet_ntoa_r with -D_REENTRANT is declared)
|
|
|
|
AC_EGREP_CPP(inet_ntoa_r,[
|
|
|
|
#define _REENTRANT
|
|
|
|
#include <arpa/inet.h>],[
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_INET_NTOA_R_DECL, 1, [inet_ntoa_r() is declared])
|
|
|
|
AC_DEFINE(NEED_REENTRANT, 1, [need REENTRANT defined])
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_RESULT(yes)],
|
|
|
|
AC_MSG_RESULT(no))])])
|
|
|
|
])
|
|
|
|
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_GETHOSTBYADDR_R],
|
2001-08-20 03:10:28 -04:00
|
|
|
[
|
|
|
|
dnl check for number of arguments to gethostbyaddr_r. it might take
|
|
|
|
dnl either 5, 7, or 8 arguments.
|
|
|
|
AC_CHECK_FUNCS(gethostbyaddr_r,[
|
|
|
|
AC_MSG_CHECKING(if gethostbyaddr_r takes 5 arguments)
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>],[
|
|
|
|
char * address;
|
|
|
|
int length;
|
|
|
|
int type;
|
|
|
|
struct hostent h;
|
|
|
|
struct hostent_data hdata;
|
|
|
|
int rc;
|
|
|
|
rc = gethostbyaddr_r(address, length, type, &h, &hdata);],[
|
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYADDR_R_5, 1, [gethostbyaddr_r() takes 5 args])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyaddr_args=5],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING(if gethostbyaddr_r with -D_REENTRANT takes 5 arguments)
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#define _REENTRANT
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>],[
|
|
|
|
char * address;
|
|
|
|
int length;
|
|
|
|
int type;
|
|
|
|
struct hostent h;
|
|
|
|
struct hostent_data hdata;
|
|
|
|
int rc;
|
|
|
|
rc = gethostbyaddr_r(address, length, type, &h, &hdata);],[
|
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYADDR_R_5, 1, [gethostbyaddr_r() takes 5 args])
|
|
|
|
AC_DEFINE(NEED_REENTRANT, 1, [need REENTRANT])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyaddr_args=5],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING(if gethostbyaddr_r takes 7 arguments)
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>],[
|
|
|
|
char * address;
|
|
|
|
int length;
|
|
|
|
int type;
|
|
|
|
struct hostent h;
|
|
|
|
char buffer[8192];
|
|
|
|
int h_errnop;
|
|
|
|
struct hostent * hp;
|
|
|
|
|
|
|
|
hp = gethostbyaddr_r(address, length, type, &h,
|
|
|
|
buffer, 8192, &h_errnop);],[
|
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYADDR_R_7, 1, [gethostbyaddr_r() takes 7 args] )
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyaddr_args=7],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING(if gethostbyaddr_r takes 8 arguments)
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>],[
|
|
|
|
char * address;
|
|
|
|
int length;
|
|
|
|
int type;
|
|
|
|
struct hostent h;
|
|
|
|
char buffer[8192];
|
|
|
|
int h_errnop;
|
|
|
|
struct hostent * hp;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = gethostbyaddr_r(address, length, type, &h,
|
|
|
|
buffer, 8192, &hp, &h_errnop);],[
|
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYADDR_R_8, 1, [gethostbyaddr_r() takes 8 args])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyaddr_args=8],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
have_missing_r_funcs="$have_missing_r_funcs gethostbyaddr_r"])])])])])
|
|
|
|
])
|
|
|
|
|
2004-01-15 07:48:13 -05:00
|
|
|
AC_DEFUN([CURL_CHECK_GETHOSTBYNAME_R],
|
2001-08-20 03:10:28 -04:00
|
|
|
[
|
|
|
|
dnl check for number of arguments to gethostbyname_r. it might take
|
|
|
|
dnl either 3, 5, or 6 arguments.
|
|
|
|
AC_CHECK_FUNCS(gethostbyname_r,[
|
2001-10-04 10:05:12 -04:00
|
|
|
AC_MSG_CHECKING([if gethostbyname_r takes 3 arguments])
|
|
|
|
AC_TRY_COMPILE([
|
2001-08-20 03:10:28 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>
|
2001-11-08 09:48:50 -05:00
|
|
|
#undef NULL
|
|
|
|
#define NULL (void *)0
|
2001-08-20 03:10:28 -04:00
|
|
|
|
|
|
|
int
|
2001-10-04 10:05:12 -04:00
|
|
|
gethostbyname_r(const char *, struct hostent *, struct hostent_data *);],[
|
2002-01-31 02:53:20 -05:00
|
|
|
struct hostent_data data;
|
2001-10-04 10:05:12 -04:00
|
|
|
gethostbyname_r(NULL, NULL, NULL);],[
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYNAME_R_3, 1, [gethostbyname_r() takes 3 args])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyname_args=3],[
|
|
|
|
AC_MSG_RESULT(no)
|
2001-10-04 10:05:12 -04:00
|
|
|
AC_MSG_CHECKING([if gethostbyname_r with -D_REENTRANT takes 3 arguments])
|
|
|
|
AC_TRY_COMPILE([
|
2001-08-20 03:10:28 -04:00
|
|
|
#define _REENTRANT
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>
|
2001-11-08 09:48:50 -05:00
|
|
|
#undef NULL
|
|
|
|
#define NULL (void *)0
|
2001-08-20 03:10:28 -04:00
|
|
|
|
|
|
|
int
|
2001-10-04 10:05:12 -04:00
|
|
|
gethostbyname_r(const char *,struct hostent *, struct hostent_data *);],[
|
2002-01-31 02:53:20 -05:00
|
|
|
struct hostent_data data;
|
2001-10-04 10:05:12 -04:00
|
|
|
gethostbyname_r(NULL, NULL, NULL);],[
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYNAME_R_3, 1, [gethostbyname_r() takes 3 args])
|
|
|
|
AC_DEFINE(NEED_REENTRANT, 1, [needs REENTRANT])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyname_args=3],[
|
|
|
|
AC_MSG_RESULT(no)
|
2001-10-04 10:05:12 -04:00
|
|
|
AC_MSG_CHECKING([if gethostbyname_r takes 5 arguments])
|
|
|
|
AC_TRY_COMPILE([
|
2001-08-20 03:10:28 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>
|
2001-11-08 09:48:50 -05:00
|
|
|
#undef NULL
|
|
|
|
#define NULL (void *)0
|
2001-08-20 03:10:28 -04:00
|
|
|
|
2001-10-04 10:05:12 -04:00
|
|
|
struct hostent *
|
|
|
|
gethostbyname_r(const char *, struct hostent *, char *, int, int *);],[
|
|
|
|
gethostbyname_r(NULL, NULL, NULL, 0, NULL);],[
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYNAME_R_5, 1, [gethostbyname_r() takes 5 args])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyname_args=5],[
|
|
|
|
AC_MSG_RESULT(no)
|
2001-10-04 10:05:12 -04:00
|
|
|
AC_MSG_CHECKING([if gethostbyname_r takes 6 arguments])
|
|
|
|
AC_TRY_COMPILE([
|
2001-08-20 03:10:28 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>
|
2001-11-08 09:48:50 -05:00
|
|
|
#undef NULL
|
|
|
|
#define NULL (void *)0
|
2001-08-20 03:10:28 -04:00
|
|
|
|
|
|
|
int
|
2001-10-04 10:05:12 -04:00
|
|
|
gethostbyname_r(const char *, struct hostent *, char *, size_t,
|
|
|
|
struct hostent **, int *);],[
|
|
|
|
gethostbyname_r(NULL, NULL, NULL, 0, NULL, NULL);],[
|
2001-08-20 03:10:28 -04:00
|
|
|
AC_MSG_RESULT(yes)
|
2003-01-20 10:16:56 -05:00
|
|
|
AC_DEFINE(HAVE_GETHOSTBYNAME_R_6, 1, [gethostbyname_r() takes 6 args])
|
2001-08-20 03:10:28 -04:00
|
|
|
ac_cv_gethostbyname_args=6],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
have_missing_r_funcs="$have_missing_r_funcs gethostbyname_r"],
|
|
|
|
[ac_cv_gethostbyname_args=0])],
|
|
|
|
[ac_cv_gethostbyname_args=0])],
|
|
|
|
[ac_cv_gethostbyname_args=0])],
|
|
|
|
[ac_cv_gethostbyname_args=0])])
|
|
|
|
|
|
|
|
if test "$ac_cv_func_gethostbyname_r" = "yes"; then
|
|
|
|
if test "$ac_cv_gethostbyname_args" = "0"; then
|
|
|
|
dnl there's a gethostbyname_r() function, but we don't know how
|
|
|
|
dnl many arguments it wants!
|
|
|
|
AC_MSG_ERROR([couldn't figure out how to use gethostbyname_r()])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
])
|
2004-02-25 05:19:02 -05:00
|
|
|
|
|
|
|
dnl We create a function for detecting which compiler we use and then set as
|
|
|
|
dnl pendantic compiler options as possible for that particular compiler. The
|
|
|
|
dnl options are only used for debug-builds.
|
|
|
|
|
|
|
|
AC_DEFUN([CURL_CC_DEBUG_OPTS],
|
|
|
|
[
|
|
|
|
if test "$GCC" = "yes"; then
|
|
|
|
|
|
|
|
dnl figure out gcc version!
|
|
|
|
AC_MSG_CHECKING([gcc version])
|
|
|
|
gccver=`$CC -dumpversion`
|
|
|
|
num1=`echo $gccver | cut -d . -f1`
|
|
|
|
num2=`echo $gccver | cut -d . -f2`
|
|
|
|
gccnum=`(expr $num1 "*" 100 + $num2) 2>/dev/null`
|
|
|
|
AC_MSG_RESULT($gccver)
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([if this is icc in disguise])
|
2004-02-26 06:37:14 -05:00
|
|
|
AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
|
2004-02-25 05:19:02 -05:00
|
|
|
dnl action if the text is found, this it has not been replaced by the
|
|
|
|
dnl cpp
|
2004-02-26 06:37:14 -05:00
|
|
|
ICC="no"
|
2004-02-25 05:19:02 -05:00
|
|
|
AC_MSG_RESULT([no]),
|
|
|
|
dnl the text was not found, it was replaced by the cpp
|
2004-02-26 06:37:14 -05:00
|
|
|
ICC="yes"
|
2004-02-25 05:19:02 -05:00
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
)
|
|
|
|
|
|
|
|
if test "$ICC" = "yes"; then
|
|
|
|
dnl this is icc, not gcc.
|
2004-02-25 09:14:30 -05:00
|
|
|
|
2004-02-26 07:40:09 -05:00
|
|
|
dnl ICC warnings we ignore:
|
|
|
|
dnl * 269 warns on our "%Od" printf formatters for curl_off_t output:
|
|
|
|
dnl "invalid format string conversion"
|
2004-03-10 04:52:04 -05:00
|
|
|
dnl * 279 warns on static conditions in while expressions
|
|
|
|
dnl * 981 warns on "operands are evaluated in unspecified order"
|
2004-03-08 06:37:12 -05:00
|
|
|
dnl * 1419 warns on "external declaration in primary source file"
|
|
|
|
dnl which we know and do on purpose.
|
2004-02-25 09:14:30 -05:00
|
|
|
|
2004-03-10 04:52:04 -05:00
|
|
|
WARN="-wd279,269,1419,981"
|
2004-02-25 09:14:30 -05:00
|
|
|
|
|
|
|
if test "$gccnum" -gt "600"; then
|
2004-02-26 07:40:09 -05:00
|
|
|
dnl icc 6.0 and older doesn't have the -Wall flag
|
2004-02-25 09:14:30 -05:00
|
|
|
WARN="-Wall $WARN"
|
|
|
|
fi
|
2004-02-25 05:19:02 -05:00
|
|
|
else dnl $ICC = yes
|
2004-03-01 08:10:35 -05:00
|
|
|
dnl this is a set of options we believe *ALL* gcc versions support:
|
|
|
|
WARN="-W -Wall -Wwrite-strings -pedantic -Wno-long-long -Wpointer-arith -Wnested-externs -Winline -Wmissing-declarations -Wmissing-prototypes -Wsign-compare"
|
2004-02-25 05:19:02 -05:00
|
|
|
|
2004-03-01 08:10:35 -05:00
|
|
|
dnl -Wcast-align is a bit too annoying on all gcc versions ;-)
|
|
|
|
|
|
|
|
if test "$gccnum" -gt "295"; then
|
|
|
|
dnl only if the compiler is newer than 2.95 since we got lots of
|
|
|
|
dnl "`_POSIX_C_SOURCE' is not defined" in system headers with
|
|
|
|
dnl gcc 2.95.4 on FreeBSD 4.9!
|
|
|
|
WARN="$WARN -Wundef"
|
|
|
|
fi
|
2004-02-25 05:19:02 -05:00
|
|
|
|
|
|
|
if test "$gccnum" -ge "296"; then
|
|
|
|
dnl gcc 2.96 or later
|
|
|
|
WARN="$WARN -Wfloat-equal"
|
2004-03-01 08:10:35 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$gccnum" -gt "296"; then
|
|
|
|
dnl this option does not exist in 2.96
|
|
|
|
WARN="$WARN -Wno-format-nonliteral"
|
|
|
|
fi
|
2004-02-25 05:19:02 -05:00
|
|
|
|
2004-03-01 08:10:35 -05:00
|
|
|
dnl -Wunreachable-code seems totally unreliable on my gcc 3.3.2 on
|
|
|
|
dnl on i686-Linux as it gives us heaps with false positives
|
|
|
|
if test "$gccnum" -ge "303"; then
|
|
|
|
dnl gcc 3.3 and later
|
|
|
|
WARN="$WARN -Wendif-labels -Wstrict-prototypes"
|
2004-02-25 05:19:02 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
for flag in $CPPFLAGS; do
|
|
|
|
case "$flag" in
|
|
|
|
-I*)
|
2004-03-01 08:10:35 -05:00
|
|
|
dnl Include path, provide a -isystem option for the same dir
|
|
|
|
dnl to prevent warnings in those dirs. The -isystem was not very
|
|
|
|
dnl reliable on earlier gcc versions.
|
2004-02-25 05:19:02 -05:00
|
|
|
add=`echo $flag | sed 's/^-I/-isystem /g'`
|
2004-02-25 09:14:30 -05:00
|
|
|
WARN="$WARN $add"
|
2004-02-25 05:19:02 -05:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
fi dnl $ICC = no
|
|
|
|
|
2004-02-25 09:14:30 -05:00
|
|
|
CFLAGS="$CFLAGS $WARN"
|
|
|
|
|
2004-03-01 08:02:34 -05:00
|
|
|
AC_MSG_NOTICE([Added this set of compiler options: $WARN])
|
|
|
|
|
|
|
|
else dnl $GCC = yes
|
|
|
|
|
|
|
|
AC_MSG_NOTICE([Added no extra compiler options])
|
|
|
|
|
2004-02-25 05:19:02 -05:00
|
|
|
fi dnl $GCC = yes
|
|
|
|
|
|
|
|
dnl strip off optimizer flags
|
|
|
|
NEWFLAGS=""
|
|
|
|
for flag in $CFLAGS; do
|
|
|
|
case "$flag" in
|
|
|
|
-O*)
|
|
|
|
dnl echo "cut off $flag"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
NEWFLAGS="$NEWFLAGS $flag"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
CFLAGS=$NEWFLAGS
|
|
|
|
|
|
|
|
]) dnl end of AC_DEFUN()
|
|
|
|
|