Skip to content
Snippets Groups Projects
Commit ff709848 authored by Yang Tse's avatar Yang Tse
Browse files

Get qualifier of arg 1 for getnameinfo apart.

parent 279dd6d8
Branches
Tags
No related merge requests found
...@@ -355,6 +355,18 @@ AC_DEFUN([CURL_CHECK_FUNC_GETNAMEINFO], [ ...@@ -355,6 +355,18 @@ AC_DEFUN([CURL_CHECK_FUNC_GETNAMEINFO], [
[Define to the type of args 4 and 6 for getnameinfo.]) [Define to the type of args 4 and 6 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4],
[Define to the type of arg 7 for getnameinfo.]) [Define to the type of arg 7 for getnameinfo.])
#
case "$[1]" in
const*)
AC_DEFINE_UNQUOTED(GETNAMEINFO_QUAL_ARG1, "const",
[Define to the type qualifier of arg 1 for getnameinfo.])
;;
*)
AC_DEFINE_UNQUOTED(GETNAMEINFO_QUAL_ARG1, "",
[Define to the type qualifier of arg 1 for getnameinfo.])
;;
esac
#
AC_DEFINE_UNQUOTED(HAVE_GETNAMEINFO, 1, AC_DEFINE_UNQUOTED(HAVE_GETNAMEINFO, 1,
[Define to 1 if you have the getnameinfo function.]) [Define to 1 if you have the getnameinfo function.])
ac_cv_func_getnameinfo="yes" ac_cv_func_getnameinfo="yes"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment