mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
support building ares-enabled too
This commit is contained in:
parent
f991a69cce
commit
2bdf52d4c5
18
testcurl.sh
18
testcurl.sh
@ -183,6 +183,24 @@ fi
|
|||||||
echo "testcurl: display lib/config.h"
|
echo "testcurl: display lib/config.h"
|
||||||
grep "^ *#" lib/config.h
|
grep "^ *#" lib/config.h
|
||||||
|
|
||||||
|
if { grep USE_ARES lib/config.h; } then
|
||||||
|
echo "testcurl: setup to build ares"
|
||||||
|
|
||||||
|
# make an ares dir
|
||||||
|
mkdir ares
|
||||||
|
|
||||||
|
# run the ares configure
|
||||||
|
cd ares
|
||||||
|
../../curl/ares/configure 2>&1
|
||||||
|
|
||||||
|
echo "testcurl: build ares"
|
||||||
|
make
|
||||||
|
echo "testcurl: ares is now built"
|
||||||
|
|
||||||
|
# cd back to the curl build dir
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
|
||||||
echo "testcurl: now run make"
|
echo "testcurl: now run make"
|
||||||
make -i 2>&1 | sed -e "s:$pwd::g"
|
make -i 2>&1 | sed -e "s:$pwd::g"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user