Merge remote branch 'origin/topic/jsiwek/missing-config-options'

* origin/topic/jsiwek/missing-config-options:
  Adding more configure options for finding dependencies

Conflicts:
	aux/binpac
This commit is contained in:
Robin Sommer 2011-01-31 08:45:07 -08:00
commit 7de348da11
6 changed files with 48 additions and 4 deletions

15
CHANGES
View file

@ -1,3 +1,18 @@
1.6-dev.36 Mon Jan 31 08:45:35 PST 2011
- Adding more configure options for finding dependencies, (Jon Siwek)
--with-flex=PATH path to flex executable
--with-bison=PATH path to bison executable
--with-perl=PATH path to perl executable
--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
- Fixing typo in PCAPTests.cmake (Jon Siwek)
1.6-dev.33 Mon Jan 24 15:29:04 PST 2011 1.6-dev.33 Mon Jan 24 15:29:04 PST 2011
- Fixing bug in SMB analyzer. (Robin Sommer) - Fixing bug in SMB analyzer. (Robin Sommer)

View file

@ -1 +1 @@
1.6-dev.35 1.6-dev.36

@ -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
View file

@ -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
;; ;;