mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 16:41:19 +00: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:
@ -19,7 +19,7 @@ function(generate_builtin_modules_c output_filename module_list)
|
|||||||
foreach(module ${module_list})
|
foreach(module ${module_list})
|
||||||
string(APPEND MODULES_EXTERN "extern module ${module}_module;\n")
|
string(APPEND MODULES_EXTERN "extern module ${module}_module;\n")
|
||||||
string(APPEND MODULES_PRELINK " &${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")
|
string(APPEND MODULES_PRELOAD " &${module}_module,\n")
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = {
|
|||||||
* We need the symbols as strings for <IfModule> containers
|
* We need the symbols as strings for <IfModule> containers
|
||||||
*/
|
*/
|
||||||
ap_module_symbol_t ap_prelinked_module_symbols[] = {
|
ap_module_symbol_t ap_prelinked_module_symbols[] = {
|
||||||
@MODULES_SYNMBOLS@
|
@MODULES_SYMBOLS@
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user