--- /dev/null
+dnl ---------------------------------------------------------------------------
+dnl Macro: SETSOCKOPT_TEST
+dnl ---------------------------------------------------------------------------
+AC_LANG(C)
+AC_RUN_IFELSE([
+ AC_LANG_PROGRAM([
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <time.h>
+#include <errno.h>
+ ], [
+ int sock = socket(AF_INET, SOCK_STREAM, 0);
+ struct timeval waittime;
+
+ waittime.tv_sec= 0;
+ waittime.tv_usec= 500;
+
+ if (setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO,
+ &waittime, (socklen_t)sizeof(struct timeval)) == -1) {
+ if (errno == ENOPROTOOPT) {
+ return 1;
+ }
+ }
+ return 0;
+ ])
+ ], AC_DEFINE(HAVE_SNDTIMEO, 1, [Define to 1 if you have a working SO_SNDTIMEO]))
+
+AC_RUN_IFELSE([
+ AC_LANG_PROGRAM([
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <time.h>
+#include <errno.h>
+ ], [
+ int sock = socket(AF_INET, SOCK_STREAM, 0);
+ struct timeval waittime;
+
+ waittime.tv_sec= 0;
+ waittime.tv_usec= 500;
+
+ if (setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO,
+ &waittime, (socklen_t)sizeof(struct timeval)) == -1) {
+ if (errno == ENOPROTOOPT) {
+ return 1;
+ }
+ }
+ return 0;
+ ])
+ ], AC_DEFINE(HAVE_RCVTIMEO, 1, [Define to 1 if you have a working SO_RCVTIMEO]))
+
+dnl ---------------------------------------------------------------------------
+dnl End Macro: SETSOCKOPT_TEST
+dnl ---------------------------------------------------------------------------
AC_SEARCH_LIBS(getopt_long, gnugetopt)
AC_SEARCH_LIBS(socket, socket)
AC_SEARCH_LIBS(gethostbyname, nsl)
+
+sinclude(config/setsockopt.m4)
+
AC_OUTPUT(Makefile clients/Makefile tests/Makefile docs/Makefile libmemcached/Makefile support/Makefile support/libmemcached.pc support/libmemcached.spec)
if (ptr->type == MEMCACHED_CONNECTION_UDP)
return MEMCACHED_SUCCESS;
-#ifndef __sun
+#ifdef HAVE_SNDTIMEO
if (ptr->root->snd_timeout)
{
int error;
&waittime, (socklen_t)sizeof(struct timeval));
WATCHPOINT_ASSERT(error == 0);
}
+#endif
+#ifdef HAVE_RCVTIMEO
if (ptr->root->rcv_timeout)
{
int error;