From: Daniel Stenberg Date: Tue, 2 Dec 2003 22:04:30 +0000 (+0000) Subject: that MSG_NOSIGNAL check serves no useful purpose! X-Git-Tag: curl-7_11_0~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d670f308a64824443313e4893ae44e01af7eee8c;p=curl that MSG_NOSIGNAL check serves no useful purpose! --- diff --git a/configure.ac b/configure.ac index 3ecf91986..c831dffaf 100644 --- a/configure.ac +++ b/configure.ac @@ -331,18 +331,6 @@ AC_HELP_STRING([--disable-nonblocking],[Disable non-blocking socket detection]), CURL_CHECK_NONBLOCKING_SOCKET ]) -dnl ********************************************************************** -dnl Check for MSG_NOSIGNAL -dnl ********************************************************************** -AC_MSG_CHECKING(for MSG_NOSIGNAL) -AC_TRY_COMPILE([#include ], - [ int f = MSG_NOSIGNAL; ], - [ AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_MSG_NOSIGNAL, 1, - [Define this symbol if you have MSG_NOSIGNAL]) ], - [ AC_MSG_RESULT(no)] -) - dnl ********************************************************************** dnl Check for the random seed preferences dnl **********************************************************************