diff options
author | Yang Tse <yangsita@gmail.com> | 2005-12-17 02:41:33 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2005-12-17 02:41:33 +0000 |
commit | 47c06fa3081028f4e20827a160601ee3fd591890 (patch) | |
tree | 51f910be800f2181a8837af49ffc4dfde3468f60 | |
parent | b7f447f8d8e7e4bdd720c621580895e6939b3f39 (diff) |
Avoid breaking configure due to CURL_FUNC_GETNAMEINFO_ARGTYPES failure, since at this point nothing depends on it.
-rw-r--r-- | acinclude.m4 | 2 | ||||
-rw-r--r-- | ares/acinclude.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 47d94b37e..5938b105f 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -253,7 +253,7 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [ done ]) if test "$curl_cv_func_getnameinfo_args" = "unknown"; then - AC_MSG_ERROR([Cannot find proper types to use for getnameinfo args]) + AC_MSG_WARN([Cannot find proper types to use for getnameinfo args]) else gni_prev_IFS=$IFS; IFS=',' set dummy `echo "$curl_cv_func_getnameinfo_args" | sed 's/\*/\*/g'` diff --git a/ares/acinclude.m4 b/ares/acinclude.m4 index 75bf3bb07..191d8a794 100644 --- a/ares/acinclude.m4 +++ b/ares/acinclude.m4 @@ -253,7 +253,7 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [ done ]) if test "$curl_cv_func_getnameinfo_args" = "unknown"; then - AC_MSG_ERROR([Cannot find proper types to use for getnameinfo args]) + AC_MSG_WARN([Cannot find proper types to use for getnameinfo args]) else gni_prev_IFS=$IFS; IFS=',' set dummy `echo "$curl_cv_func_getnameinfo_args" | sed 's/\*/\*/g'` |