mirror of
https://github.com/apache/httpd.git
synced 2025-07-23 01:08:51 +00:00

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919602 13f79535-47bb-0310-9956-ffa450edef68
42 lines
975 B
C
42 lines
975 B
C
/*
|
|
* 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_SYMBOLS@
|
|
{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
|
|
};
|