aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-07-19 18:32:27 +0000
committerYang Tse <yangsita@gmail.com>2008-07-19 18:32:27 +0000
commit3e488c4f19d5dbbe199efb94d05aad20c5a9becc (patch)
treed6a11e858ad89344dab67702cc991332d21b042c /acinclude.m4
parent3f84e373acb2a2a33f64c3332e3a93b3f1fbe7d7 (diff)
Temporarily show additional info needed to debug configure
failure to properly detect recvfrom arg types on Solaris
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m416
1 files changed, 16 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index e1c16bbfd..13eb49363 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1687,6 +1687,22 @@ AC_DEFUN([CURL_CHECK_FUNC_RECVFROM], [
]])
],[
curl_cv_func_recvfrom_args="$recvfrom_arg1,$recvfrom_arg2,$recvfrom_arg3,$recvfrom_arg4,$recvfrom_arg5,$recvfrom_arg6,$recvfrom_retv"
+ ],[
+ case $host in
+ *-*-solaris*)
+ echo "DEBUG: RECVFROM COMPILATION TEST -----" >&6
+ echo "DEBUG: ARG1 = $recvfrom_arg1" >&6
+ echo "DEBUG: ARG2 = $recvfrom_arg2" >&6
+ echo "DEBUG: ARG3 = $recvfrom_arg3" >&6
+ echo "DEBUG: ARG4 = $recvfrom_arg4" >&6
+ echo "DEBUG: ARG5 = $recvfrom_arg5" >&6
+ echo "DEBUG: ARG6 = $recvfrom_arg6" >&6
+ echo "DEBUG: RETV = $recvfrom_retv" >&6
+ echo "DEBUG: fails with conftest.err..." >&6
+ sed 's/^/| /' conftest.err >&6
+ echo "DEBUG: -------------------------------" >&6
+ ;;
+ esac
])
fi
done