-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow-up to r1919413: CMake: Use configure_file() instead of file(wr…
…ite) to generate modules.c file because configure_file() doesn't change timestamp of file if contents is the the same. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919587 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Ivan Zhakov
committed
Jul 30, 2024
1 parent
a288cd3
commit 0fd65db
Showing
2 changed files
with
46 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* modules.c --- automatically generated by Apache | ||
* configuration script. DO NOT HAND EDIT!!!!! | ||
*/ | ||
|
||
#include "ap_config.h" | ||
#include "httpd.h" | ||
#include "http_config.h" | ||
|
||
@MODULES_EXTERN@ | ||
/* | ||
* Modules which implicitly form the | ||
* list of activated modules on startup, | ||
* i.e. these are the modules which are | ||
* initially linked into the Apache processing | ||
* [extendable under run-time via AddModule] | ||
*/ | ||
AP_DECLARE_DATA module *ap_prelinked_modules[] = { | ||
@MODULES_PRELINK@ | ||
NULL | ||
}; | ||
|
||
/* | ||
* We need the symbols as strings for <IfModule> containers | ||
*/ | ||
ap_module_symbol_t ap_prelinked_module_symbols[] = { | ||
@MODULES_SYNMBOLS@ | ||
{NULL, NULL} | ||
}; | ||
|
||
/* | ||
* Modules which initially form the | ||
* list of available modules on startup, | ||
* i.e. these are the modules which are | ||
* initially loaded into the Apache process | ||
* [extendable under run-time via LoadModule] | ||
*/ | ||
module *ap_preloaded_modules[] = { | ||
@MODULES_PRELOAD@ | ||
NULL | ||
}; |