aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-08-04 00:39:34 +0000
committerYang Tse <yangsita@gmail.com>2006-08-04 00:39:34 +0000
commit7240acdebcb1c5f2f7b11e9bf5fcfcac77cedb53 (patch)
treef6ffb1c8b9cb39e9b1b90a40011b077858caa593
parentb9b06b00bf19657344656ee26933425140b8787c (diff)
Being unable to link or find out recv() or send() args types is a fatal error.
-rw-r--r--acinclude.m410
-rw-r--r--ares/acinclude.m410
2 files changed, 12 insertions, 8 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 6369761de..f12a761dd 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -737,8 +737,7 @@ AC_DEFUN([CURL_CHECK_FUNC_RECV], [
done
]) # AC_CACHE_CHECK
if test "$curl_cv_func_recv_args" = "unknown"; then
- AC_MSG_WARN([Cannot find proper types to use for recv args])
- AC_MSG_WARN([HAVE_RECV will not be defined])
+ AC_MSG_ERROR([Cannot find proper types to use for recv args])
else
recv_prev_IFS=$IFS; IFS=','
set dummy `echo "$curl_cv_func_recv_args" | sed 's/\*/\*/g'`
@@ -760,6 +759,8 @@ AC_DEFUN([CURL_CHECK_FUNC_RECV], [
[Define to 1 if you have the recv function.])
ac_cv_func_recv="yes"
fi
+ else
+ AC_MSG_ERROR([Unable to link function recv])
fi
]) # AC_DEFUN
@@ -865,8 +866,7 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [
done
]) # AC_CACHE_CHECK
if test "$curl_cv_func_send_args" = "unknown"; then
- AC_MSG_WARN([Cannot find proper types to use for send args])
- AC_MSG_WARN([HAVE_SEND will not be defined])
+ AC_MSG_ERROR([Cannot find proper types to use for send args])
else
send_prev_IFS=$IFS; IFS=','
set dummy `echo "$curl_cv_func_send_args" | sed 's/\*/\*/g'`
@@ -922,6 +922,8 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [
[Define to 1 if you have the send function.])
ac_cv_func_send="yes"
fi
+ else
+ AC_MSG_ERROR([Unable to link function send])
fi
]) # AC_DEFUN
diff --git a/ares/acinclude.m4 b/ares/acinclude.m4
index 6745bc2f4..267d28dc6 100644
--- a/ares/acinclude.m4
+++ b/ares/acinclude.m4
@@ -715,8 +715,7 @@ AC_DEFUN([CURL_CHECK_FUNC_RECV], [
done
]) # AC_CACHE_CHECK
if test "$curl_cv_func_recv_args" = "unknown"; then
- AC_MSG_WARN([Cannot find proper types to use for recv args])
- AC_MSG_WARN([HAVE_RECV will not be defined])
+ AC_MSG_ERROR([Cannot find proper types to use for recv args])
else
recv_prev_IFS=$IFS; IFS=','
set dummy `echo "$curl_cv_func_recv_args" | sed 's/\*/\*/g'`
@@ -738,6 +737,8 @@ AC_DEFUN([CURL_CHECK_FUNC_RECV], [
[Define to 1 if you have the recv function.])
ac_cv_func_recv="yes"
fi
+ else
+ AC_MSG_ERROR([Unable to link function recv])
fi
]) # AC_DEFUN
@@ -843,8 +844,7 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [
done
]) # AC_CACHE_CHECK
if test "$curl_cv_func_send_args" = "unknown"; then
- AC_MSG_WARN([Cannot find proper types to use for send args])
- AC_MSG_WARN([HAVE_SEND will not be defined])
+ AC_MSG_ERROR([Cannot find proper types to use for send args])
else
send_prev_IFS=$IFS; IFS=','
set dummy `echo "$curl_cv_func_send_args" | sed 's/\*/\*/g'`
@@ -900,6 +900,8 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [
[Define to 1 if you have the send function.])
ac_cv_func_send="yes"
fi
+ else
+ AC_MSG_ERROR([Unable to link function send])
fi
]) # AC_DEFUN