1
0
mirror of https://github.com/apache/httpd.git synced 2025-04-18 22:24:07 +03:00

Follow-up to r1919587: CMake: Fix type in variable name (MODULES_SYNMBOLS -> MODULES_SYMBOLS)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919602 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ivan Zhakov 2024-07-31 12:25:40 +00:00
parent 0fd65dba2f
commit 0838e04da4
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ function(generate_builtin_modules_c output_filename module_list)
foreach(module ${module_list})
string(APPEND MODULES_EXTERN "extern module ${module}_module;\n")
string(APPEND MODULES_PRELINK " &${module}_module,\n")
string(APPEND MODULES_SYNMBOLS " {\"${module}_module\", &${module}_module},\n")
string(APPEND MODULES_SYMBOLS " {\"${module}_module\", &${module}_module},\n")
string(APPEND MODULES_PRELOAD " &${module}_module,\n")
endforeach()

View File

@ -24,7 +24,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = {
* We need the symbols as strings for <IfModule> containers
*/
ap_module_symbol_t ap_prelinked_module_symbols[] = {
@MODULES_SYNMBOLS@
@MODULES_SYMBOLS@
{NULL, NULL}
};