projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
266ab95
)
Fix excessive escaping.
author
Yang Tse
<yangsita@gmail.com>
Fri, 7 Jul 2006 05:39:13 +0000
(
05:39
+0000)
committer
Yang Tse
<yangsita@gmail.com>
Fri, 7 Jul 2006 05:39:13 +0000
(
05:39
+0000)
acinclude.m4
patch
|
blob
|
history
ares/acinclude.m4
patch
|
blob
|
history
diff --git
a/acinclude.m4
b/acinclude.m4
index 6d69b36e4e64fc4f48a3c9e17a0f63aa584fa013..5ef157cca549f930fabf2f242b085edb1c58d144 100644
(file)
--- a/
acinclude.m4
+++ b/
acinclude.m4
@@
-29,7
+29,7
@@
dnl Check for headers if check not already done.
AC_DEFUN([CURL_CHECK_HEADERS_ONCE], [
for f_hdr in $1
do
- u_hdr=`echo "$f_hdr" | sed 'y/
\
.\/-/___/'`
+ u_hdr=`echo "$f_hdr" | sed 'y/.\/-/___/'`
eval prev_check_res=\$ac_cv_header_$u_hdr
case "$prev_check_res" in
yes | no)
diff --git
a/ares/acinclude.m4
b/ares/acinclude.m4
index 0bd334cd3dc09b20c304f7db67ff19bd6d241a73..97fc10b72207a0a355f2550af7104bfcf71ffc56 100644
(file)
--- a/
ares/acinclude.m4
+++ b/
ares/acinclude.m4
@@
-7,7
+7,7
@@
dnl Check for headers if check not already done.
AC_DEFUN([CURL_CHECK_HEADERS_ONCE], [
for f_hdr in $1
do
- u_hdr=`echo "$f_hdr" | sed 'y/
\
.\/-/___/'`
+ u_hdr=`echo "$f_hdr" | sed 'y/.\/-/___/'`
eval prev_check_res=\$ac_cv_header_$u_hdr
case "$prev_check_res" in
yes | no)