diff options
author | Irfan Adilovic <i.adilovic@nfotex.com> | 2016-04-15 16:37:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-21 23:08:28 +0200 |
commit | 14c8b45528467b488fd74af604ea7fe0a94c92bd (patch) | |
tree | b57616cba107ee366ecec296b93fb253c4aa74d2 /m4 | |
parent | cfe16c22d7891a1f65ea8cd4c5352504a2afbddc (diff) | |
download | curl-14c8b45528467b488fd74af604ea7fe0a94c92bd.tar.gz |
configure: ac_cv_ -> curl_cv_ for all cached vars
This was automated by:
sed -b -i -f <(ack -A1 AC_CACHE_CHECK | \
ack -o 'ac_cv_.*?\b' | \
sort -u | xargs -n1 bash -c \
'echo "s/$0/curl_cv_${0#ac_cv_}/g"') \
$(git ls-files)
This only changed the prefix for 16 variables actually checked with
AC_CACHE_CHECK.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-confopts.m4 | 4 | ||||
-rw-r--r-- | m4/curl-functions.m4 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/m4/curl-confopts.m4 b/m4/curl-confopts.m4 index a396be60b..a6b1e5336 100644 --- a/m4/curl-confopts.m4 +++ b/m4/curl-confopts.m4 @@ -464,7 +464,7 @@ AC_DEFUN([CURL_CONFIGURE_SYMBOL_HIDING], [ AC_MSG_CHECKING([whether hiding of library internal symbols will actually happen]) CFLAG_CURL_SYMBOL_HIDING="" doing_symbol_hiding="no" - if test x"$ac_cv_native_windows" != "xyes" && + if test x"$curl_cv_native_windows" != "xyes" && test "$want_symbol_hiding" = "yes" && test "$supports_symbol_hiding" = "yes"; then doing_symbol_hiding="yes" @@ -611,7 +611,7 @@ AC_DEFUN([CURL_CHECK_NTLM_WB], [ AC_REQUIRE([CURL_CHECK_OPTION_NTLM_WB])dnl AC_REQUIRE([CURL_CHECK_NATIVE_WINDOWS])dnl AC_MSG_CHECKING([whether to enable NTLM delegation to winbind's helper]) - if test "$ac_cv_native_windows" = "yes" || + if test "$curl_cv_native_windows" = "yes" || test "x$SSL_ENABLED" = "x"; then want_ntlm_wb_file="" want_ntlm_wb="no" diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index ed263ba9a..d222bfd58 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -2208,7 +2208,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ ;; esac if test "$tst_tsafe_getaddrinfo" = "unknown" && - test "$ac_cv_native_windows" = "yes"; then + test "$curl_cv_native_windows" = "yes"; then tst_tsafe_getaddrinfo="yes" fi if test "$tst_tsafe_getaddrinfo" = "unknown"; then |