diff options
author | Irfan Adilovic <i.adilovic@nfotex.com> | 2016-04-17 21:58:15 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-21 23:08:28 +0200 |
commit | 4b639dbc747e69b2e017d1e1b8b2a9beb4711bfd (patch) | |
tree | a816df16b49d8b2699681d0e6493f094fcb4cda8 /acinclude.m4 | |
parent | 68c83b4623dfc9ac42886c7b7752d208bc51517e (diff) | |
download | curl-4b639dbc747e69b2e017d1e1b8b2a9beb4711bfd.tar.gz |
configure: ac_cv_ -> curl_cv_ for r/w vars
These configure vars are modified in a curl-specific way and modified by
the configure process, but are never loaded from cache, even though they
are designated as _cv_. We should implement proper AC_CACHE_CHECKs for
them eventually.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index ebe72d3f5..3544e8592 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1740,13 +1740,13 @@ AC_DEFUN([TYPE_SIG_ATOMIC_T], [ ]]) ],[ AC_MSG_RESULT([no]) - ac_cv_sig_atomic_t_volatile="no" + curl_cv_sig_atomic_t_volatile="no" ],[ AC_MSG_RESULT([yes]) - ac_cv_sig_atomic_t_volatile="yes" + curl_cv_sig_atomic_t_volatile="yes" ]) # - if test "$ac_cv_sig_atomic_t_volatile" = "yes"; then + if test "$curl_cv_sig_atomic_t_volatile" = "yes"; then AC_DEFINE(HAVE_SIG_ATOMIC_T_VOLATILE, 1, [Define to 1 if sig_atomic_t is already defined as volatile.]) fi |