You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2006/10/03 17:07:12 UTC

svn commit: r452525 - /xerces/c/trunk/m4/xerces_curl_prefix.m4

Author: jberry
Date: Tue Oct  3 08:07:11 2006
New Revision: 452525

URL: http://svn.apache.org/viewvc?view=rev&rev=452525
Log:
Tighten curl selection to ensure that both easy.h and multi.h are present

Modified:
    xerces/c/trunk/m4/xerces_curl_prefix.m4

Modified: xerces/c/trunk/m4/xerces_curl_prefix.m4
URL: http://svn.apache.org/viewvc/xerces/c/trunk/m4/xerces_curl_prefix.m4?view=diff&rev=452525&r1=452524&r2=452525
==============================================================================
--- xerces/c/trunk/m4/xerces_curl_prefix.m4 (original)
+++ xerces/c/trunk/m4/xerces_curl_prefix.m4 Tue Oct  3 08:07:11 2006
@@ -23,7 +23,7 @@
 		if test x"$with_curl" != x"no"; then
 			search_list="$with_curl /usr/local /usr"
 			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
 					break
 				fi



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org