diff options
author | Ivan Zhakov <ivan@apache.org> | 2024-07-30 02:15:32 +0200 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2024-07-30 02:15:32 +0200 |
commit | 0fd65dba2f2960bffcaaef788ceab762cfea6d89 (patch) | |
tree | 898f7b99e6e759dae60778321c59dd13b6b4591c /build/modules.c.in | |
parent | * modules/dav/fs/repos.c (dav_fs_get_resource): Return a 404 rather (diff) | |
download | apache2-0fd65dba2f2960bffcaaef788ceab762cfea6d89.tar.xz apache2-0fd65dba2f2960bffcaaef788ceab762cfea6d89.zip |
Follow-up to r1919413: CMake: Use configure_file() instead of file(write)
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
Diffstat (limited to 'build/modules.c.in')
-rw-r--r-- | build/modules.c.in | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/build/modules.c.in b/build/modules.c.in new file mode 100644 index 0000000000..c811d0d444 --- /dev/null +++ b/build/modules.c.in @@ -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
+};
|