mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Adding more configure options for finding dependencies
This commit is contained in:
parent
8974265d39
commit
da3fb85e5c
5 changed files with 33 additions and 4 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 1cdccf62f55369f278ddd392804ade580116a47b
|
Subproject commit b79d06a6acf785476b9273cbacc956c2a07b8972
|
|
@ -1 +1 @@
|
||||||
Subproject commit 89476012d96039a9ed415993b2f6f7601436cda2
|
Subproject commit 06feef28515a8527a7c290faecc343d341a9cc68
|
|
@ -1 +1 @@
|
||||||
Subproject commit 9ad8f64aecbb3320eaee087a867b5742ccfdafa1
|
Subproject commit b7115b84210dcf5b04c900d7490f5dab968227c4
|
|
@ -1 +1 @@
|
||||||
Subproject commit 43bdb0fbf1a0a55fa7a862d19c471c279df62a73
|
Subproject commit d10b20da8227d0b9bc8bfecb6a044c8b470e910f
|
29
configure
vendored
29
configure
vendored
|
@ -40,11 +40,18 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
--with-bind=PATH path to BIND install root
|
--with-bind=PATH path to BIND install root
|
||||||
--with-pcap=PATH path to libpcap install root
|
--with-pcap=PATH path to libpcap install root
|
||||||
--with-binpac=PATH path to BinPAC install root
|
--with-binpac=PATH path to BinPAC install root
|
||||||
|
--with-flex=PATH path to flex executable
|
||||||
|
--with-bison=PATH path to bison executable
|
||||||
|
--with-perl=PATH path to perl executable
|
||||||
|
|
||||||
Optional Packages in Non-Standard Locations:
|
Optional Packages in Non-Standard Locations:
|
||||||
--with-libmagic=PATH path to libmagic install root
|
--with-libmagic=PATH path to libmagic install root
|
||||||
--with-geoip=PATH path to the libGeoIP install root
|
--with-geoip=PATH path to the libGeoIP install root
|
||||||
--with-perftools=PATH path to Google Perftools install root
|
--with-perftools=PATH path to Google Perftools install root
|
||||||
|
--with-python=PATH path to Python interpreter
|
||||||
|
--with-python-lib=PATH path to libpython
|
||||||
|
--with-python-inc=PATH path to Python headers
|
||||||
|
--with-swig=PATH path to SWIG executable
|
||||||
|
|
||||||
Packaging Options (for developers):
|
Packaging Options (for developers):
|
||||||
--ignore-dirs=PATHS paths to ignore when creating source package
|
--ignore-dirs=PATHS paths to ignore when creating source package
|
||||||
|
@ -157,6 +164,15 @@ while [ $# -ne 0 ]; do
|
||||||
--with-binpac=*)
|
--with-binpac=*)
|
||||||
append_cache_entry BinPAC_ROOT_DIR PATH $optarg
|
append_cache_entry BinPAC_ROOT_DIR PATH $optarg
|
||||||
;;
|
;;
|
||||||
|
--with-flex=*)
|
||||||
|
append_cache_entry FLEX_EXECUTABLE PATH $optarg
|
||||||
|
;;
|
||||||
|
--with-bison=*)
|
||||||
|
append_cache_entry BISON_EXECUTABLE PATH $optarg
|
||||||
|
;;
|
||||||
|
--with-perl=*)
|
||||||
|
append_cache_entry PERL_EXECUTABLE PATH $optarg
|
||||||
|
;;
|
||||||
--with-libmagic=*)
|
--with-libmagic=*)
|
||||||
append_cache_entry LibMagic_ROOT_DIR PATH $optarg
|
append_cache_entry LibMagic_ROOT_DIR PATH $optarg
|
||||||
;;
|
;;
|
||||||
|
@ -166,6 +182,19 @@ while [ $# -ne 0 ]; do
|
||||||
--with-perftools=*)
|
--with-perftools=*)
|
||||||
append_cache_entry GooglePerftools_ROOT_DIR PATH $optarg
|
append_cache_entry GooglePerftools_ROOT_DIR PATH $optarg
|
||||||
;;
|
;;
|
||||||
|
--with-python=*)
|
||||||
|
append_cache_entry PYTHON_EXECUTABLE PATH $optarg
|
||||||
|
;;
|
||||||
|
--with-python-lib=*)
|
||||||
|
append_cache_entry PYTHON_LIBRARY PATH $optarg
|
||||||
|
;;
|
||||||
|
--with-python-inc=*)
|
||||||
|
append_cache_entry PYTHON_INCLUDE_DIR PATH $optarg
|
||||||
|
append_cache_entry PYTHON_INCLUDE_PATH PATH $optarg
|
||||||
|
;;
|
||||||
|
--with-swig=*)
|
||||||
|
append_cache_entry SWIG_EXECUTABLE PATH $optarg
|
||||||
|
;;
|
||||||
--ignore-dirs=*)
|
--ignore-dirs=*)
|
||||||
append_cache_entry CPACK_SOURCE_IGNORE_FILES STRING $optarg
|
append_cache_entry CPACK_SOURCE_IGNORE_FILES STRING $optarg
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue