Skip to content
Snippets Groups Projects
Commit 82959ef2 authored by James David Berry's avatar James David Berry
Browse files

Tighten curl selection to ensure that both easy.h and multi.h are present

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@452525 13f79535-47bb-0310-9956-ffa450edef68
parent 9c9c86d9
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ AC_DEFUN([XERCES_CURL_PREFIX], ...@@ -23,7 +23,7 @@ AC_DEFUN([XERCES_CURL_PREFIX],
if test x"$with_curl" != x"no"; then if test x"$with_curl" != x"no"; then
search_list="$with_curl /usr/local /usr" search_list="$with_curl /usr/local /usr"
for i in $search_list; do for i in $search_list; do
if test -r "$i/include/curl/easy.h"; then if test -r "$i/include/curl/easy.h" -a -r "$i/include/curl/multi.h" ; then
xerces_cv_curl_prefix=$i xerces_cv_curl_prefix=$i
break break
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment