Skip to content
Snippets Groups Projects
Commit 852b664e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added signal in case sigaction is missing

parent e6cdb68a
No related branches found
No related tags found
No related merge requests found
......@@ -529,7 +529,8 @@ AC_CHECK_FUNCS( socket \
perror \
closesocket \
setvbuf \
sigaction
sigaction \
signal
)
dnl removed 'getpass' check on October 26, 2000
......@@ -553,8 +554,6 @@ dnl $PATH:/usr/bin/:/usr/local/bin )
dnl AC_SUBST(RANLIB)
AC_OUTPUT( Makefile \
curl.spec \
curl-ssl.spec \
docs/Makefile \
include/Makefile \
include/curl/Makefile \
......
......@@ -726,6 +726,12 @@ CURLcode curl_connect(CURL *curl, CURLconnect **in_connect)
sigact.sa_handler = alarmfunc;
sigact.sa_flags &= ~SA_RESTART;
sigaction(SIGALRM, &sigact, NULL);
#else
/* no sigaction(), revert to the much lamer signal() */
#ifdef HAVE_SIGNAL
signal(SIGALRM, alarmfunc);
#endif
#endif
/* Parse <url> */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment