This is an automated email from the ASF dual-hosted git repository.
jvanderzee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new d6bc85f955 Add missing experimental plugins to build (#11430)
d6bc85f955 is described below
commit d6bc85f955b3f2985d2818a26e4c3034e9dcc9cf
Author: JosiahWI <[email protected]>
AuthorDate: Mon Jun 10 04:55:23 2024 -0500
Add missing experimental plugins to build (#11430)
The stale_response plugin had no auto_option, and http_stats did but its
add_subdirectory call was missing. These were missed in #10967.
---
cmake/ExperimentalPlugins.cmake | 1 +
plugins/experimental/CMakeLists.txt | 6 ++++++
2 files changed, 7 insertions(+)
diff --git a/cmake/ExperimentalPlugins.cmake b/cmake/ExperimentalPlugins.cmake
index c555f34385..6836d00f8e 100644
--- a/cmake/ExperimentalPlugins.cmake
+++ b/cmake/ExperimentalPlugins.cmake
@@ -80,6 +80,7 @@ auto_option(
auto_option(RATE_LIMIT FEATURE_VAR BUILD_RATE_LIMIT DEFAULT ${_DEFAULT})
auto_option(REDO_CACHE_LOOKUP FEATURE_VAR BUILD_REDO_CACHE_LOOKUP DEFAULT
${_DEFAULT})
auto_option(SSLHEADERS FEATURE_VAR BUILD_SSLHEADERS DEFAULT ${_DEFAULT})
+auto_option(STALE_RESPONSE FEATURE_VAR BUILD_STALE_RESPONSE DEFAULT
${_DEFAULT})
auto_option(
STEK_SHARE
FEATURE_VAR
diff --git a/plugins/experimental/CMakeLists.txt
b/plugins/experimental/CMakeLists.txt
index 0dcdcbb73b..69e6f334de 100644
--- a/plugins/experimental/CMakeLists.txt
+++ b/plugins/experimental/CMakeLists.txt
@@ -50,6 +50,9 @@ endif()
if(BUILD_HOOK_STATS)
add_subdirectory(hook_stats)
endif()
+if(BUILD_HTTP_STATS)
+ add_subdirectory(http_stats)
+endif()
if(BUILD_ICAP)
add_subdirectory(icap)
endif()
@@ -86,6 +89,9 @@ endif()
if(BUILD_SSLHEADERS)
add_subdirectory(sslheaders)
endif()
+if(BUILD_STALE_RESPONSE)
+ add_subdirectory(stale_response)
+endif()
if(BUILD_STEK_SHARE)
add_subdirectory(stek_share)
endif()