From: Michael Altizer (mialtize) Date: Fri, 27 Apr 2018 15:14:38 +0000 (-0400) Subject: Merge pull request #1204 in SNORT/snort3 from navl_integration_configure_cmake to... X-Git-Tag: 3.0.0-245~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e367c0edc002b0c9ad5ed2907b2fd153fe8be4b;p=thirdparty%2Fsnort3.git Merge pull request #1204 in SNORT/snort3 from navl_integration_configure_cmake to master Squashed commit of the following: commit b1b3a387107cafc1958b70d4617cdc4d9fe5c8cd Author: Silviu Minut Date: Fri Apr 27 10:55:11 2018 -0400 cmake: Add --enable-appid-third-party to configure_cmake.sh --- diff --git a/configure_cmake.sh b/configure_cmake.sh index 973b0b4f5..23c9c1ada 100755 --- a/configure_cmake.sh +++ b/configure_cmake.sh @@ -56,6 +56,8 @@ Optional Features: enable thread sanitizer support --enable-ub-sanitizer enable undefined behavior sanitizer support + --enable-appid-third-party + enable third party appid --enable-unit-tests build unit tests --enable-piglet build piglet test harness --disable-static-daq link static DAQ modules @@ -278,6 +280,9 @@ while [ $# -ne 0 ]; do --disable-ub-sanitizer) append_cache_entry ENABLE_UB_SANITIZER BOOL false ;; + --enable-appid-third-party) + append_cache_entry ENABLE_APPID_THIRD_PARTY BOOL true + ;; --enable-unit-tests) append_cache_entry ENABLE_UNIT_TESTS BOOL true ;;