Changeset 3962

Show
Ignore:
Timestamp:
Wed Oct 12 17:15:09 2005
Author:
mugur
Message:

fix check4_curl function: didn't search for the header in the correct locations

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/campsite/install_conf/check4_functions

    r3943 r3962  
    535 535 result=$? && [ $result -ne 0 ] && output="Could not find CURL development files. Please install libcurl-devel package." && return 1  
    536 536 curl_config_path=$file_path  
    537   check4_file curl.h --file  
    538   result=$? && [ $result -ne 0 ] && output="Could not find CURL development files. Please install libcurl-devel package." && re  
      537 check4_file curl.h --file --path "/usr/include:/usr/include/curl:/usr/local/include:/usr/local/include/curl"  
      538 result=$? && [ $result -ne 0 ] && output="Could not find CURL development files. Please install libcurl-devel package." && return 1  
    539 539 export CURL_VERSION=`$curl_config_path --version`  
    540 540 export CURL_CFLAGS=`$curl_config_path --cflags`