mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
added missing features to curl-config
This commit is contained in:
parent
a357f77c4c
commit
d6460aff36
@ -1111,6 +1111,7 @@ case "$LIBIDN" in
|
|||||||
|
|
||||||
if test "x$idn" = "xyes"; then
|
if test "x$idn" = "xyes"; then
|
||||||
curl_idn_msg="enabled"
|
curl_idn_msg="enabled"
|
||||||
|
AC_SUBST(IDN_ENABLED, [1])
|
||||||
dnl different versions of libidn have different setups of these:
|
dnl different versions of libidn have different setups of these:
|
||||||
AC_CHECK_FUNCS( idn_free idna_strerror tld_strerror)
|
AC_CHECK_FUNCS( idn_free idna_strerror tld_strerror)
|
||||||
AC_CHECK_HEADERS( idn-free.h tld.h )
|
AC_CHECK_HEADERS( idn-free.h tld.h )
|
||||||
|
@ -60,6 +60,7 @@ while test $# -gt 0; do
|
|||||||
--feature|--features)
|
--feature|--features)
|
||||||
if test "@USE_SSLEAY@" = "1"; then
|
if test "@USE_SSLEAY@" = "1"; then
|
||||||
echo "SSL"
|
echo "SSL"
|
||||||
|
NTLM=1
|
||||||
fi
|
fi
|
||||||
if test "@KRB4_ENABLED@" = "1"; then
|
if test "@KRB4_ENABLED@" = "1"; then
|
||||||
echo "KRB4"
|
echo "KRB4"
|
||||||
@ -73,6 +74,16 @@ while test $# -gt 0; do
|
|||||||
if test "@HAVE_ARES@" = "1"; then
|
if test "@HAVE_ARES@" = "1"; then
|
||||||
echo "AsynchDNS"
|
echo "AsynchDNS"
|
||||||
fi
|
fi
|
||||||
|
if test "@IDN_ENABLED@" = "1"; then
|
||||||
|
echo "IDN"
|
||||||
|
fi
|
||||||
|
if test "@USE_WINDOWS_SSPI@" = "1"; then
|
||||||
|
echo "SSPI"
|
||||||
|
NTLM=1
|
||||||
|
fi
|
||||||
|
if test "$NTLM" = "1"; then
|
||||||
|
echo "NTLM"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--protocols)
|
--protocols)
|
||||||
|
Loading…
Reference in New Issue
Block a user