File: modules.c.in

package info (click to toggle)
apache2 2.4.64-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 59,104 kB
  • sloc: ansic: 211,971; python: 13,977; perl: 11,307; sh: 7,102; php: 1,315; javascript: 1,314; awk: 749; makefile: 712; lex: 374; yacc: 161; xml: 2
file content (41 lines) | stat: -rw-r--r-- 975 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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_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
};