diff options
author | Yang Tse <yangsita@gmail.com> | 2006-07-04 17:19:15 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-07-04 17:19:15 +0000 |
commit | 55329b56cbbba58111eea6b1e36853712fa39cca (patch) | |
tree | 87e71c5b69b42c12b000da2adb78f6fddeb8d9b8 | |
parent | 7e43d06b602f5158b7240b03efad7f7066d0650d (diff) |
Use a more descriptive var name.
-rw-r--r-- | acinclude.m4 | 12 | ||||
-rw-r--r-- | ares/acinclude.m4 | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 0b13bccb2..adfce1a91 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -380,9 +380,9 @@ AC_DEFUN([CURL_CHECK_FUNC_GETNAMEINFO], [ AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4], [Define to the type of arg 7 for getnameinfo.]) # - gni_opts=$- + prev_sh_opts=$- # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) @@ -406,7 +406,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETNAMEINFO], [ AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG1, $gni_type_arg1, [Define to the type of arg 1 for getnameinfo.]) # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) @@ -739,9 +739,9 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [ AC_DEFINE_UNQUOTED(SEND_TYPE_RETV, $[5], [Define to the function return type for send.]) # - gni_opts=$- + prev_sh_opts=$- # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) @@ -765,7 +765,7 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [ AC_DEFINE_UNQUOTED(SEND_TYPE_ARG2, $send_type_arg2, [Define to the type of arg 2 for send.]) # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) diff --git a/ares/acinclude.m4 b/ares/acinclude.m4 index 14af1f27c..b86e2a8a5 100644 --- a/ares/acinclude.m4 +++ b/ares/acinclude.m4 @@ -359,9 +359,9 @@ AC_DEFUN([CURL_CHECK_FUNC_GETNAMEINFO], [ AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4], [Define to the type of arg 7 for getnameinfo.]) # - gni_opts=$- + prev_sh_opts=$- # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) @@ -385,7 +385,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETNAMEINFO], [ AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG1, $gni_type_arg1, [Define to the type of arg 1 for getnameinfo.]) # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) @@ -718,9 +718,9 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [ AC_DEFINE_UNQUOTED(SEND_TYPE_RETV, $[5], [Define to the function return type for send.]) # - gni_opts=$- + prev_sh_opts=$- # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) @@ -744,7 +744,7 @@ AC_DEFUN([CURL_CHECK_FUNC_SEND], [ AC_DEFINE_UNQUOTED(SEND_TYPE_ARG2, $send_type_arg2, [Define to the type of arg 2 for send.]) # - case $gni_opts in + case $prev_sh_opts in *f*) ;; *) |