Add --with-curl option to ./configure, addresses #877.

This commit is contained in:
Jon Siwek 2012-10-08 16:27:15 -05:00
parent 296686d5ca
commit 6caeb7d7cf
3 changed files with 10 additions and 6 deletions

4
configure vendored
View file

@ -61,6 +61,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--with-swig=PATH path to SWIG executable
--with-dataseries=PATH path to DataSeries and Lintel libraries
--with-xml2=PATH path to libxml2 installation (for DataSeries)
--with-curl=PATH path to libcurl install root (for ElasticSearch)
Packaging Options (for developers):
--binary-package toggle special logic for binary packaging
@ -234,6 +235,9 @@ while [ $# -ne 0 ]; do
--with-xml2=*)
append_cache_entry LibXML2_ROOT_DIR PATH $optarg
;;
--with-curl=*)
append_cache_entry LibCURL_ROOT_DIR PATH $optarg
;;
--binary-package)
append_cache_entry BINARY_PACKAGING_MODE BOOL true
;;