From 6b51b489414dcdc654e00f1f72d47184b4ca1c58 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Tue, 12 May 1998 11:27:06 +0000 Subject: [PATCH] Update/Create hyperlinks to new HTML document about DSO. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81263 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/dso.html | 28 +++++++++++++++------------- docs/manual/dso.html.en | 28 +++++++++++++++------------- docs/manual/mod/mod_so.html | 7 +++---- 3 files changed, 33 insertions(+), 30 deletions(-) diff --git a/docs/manual/dso.html b/docs/manual/dso.html index 6abd0e5cc9..149fdaa1d3 100644 --- a/docs/manual/dso.html +++ b/docs/manual/dso.html @@ -118,18 +118,19 @@ Apache modules into DSO files for explicit loading at run-time.

Implementation

The DSO support for loading individual Apache modules is based on a module -named mod_so.c which has to be statically compiled into the -Apache core. It is the only module besides http_core.c which -cannot be put into a DSO itself (bootstrapping!). Practically all other -distributed Apache modules then can then be placed into a DSO by individually -enabling the DSO build for them via configure's ---enable-shared option (see top-level INSTALL file) -or by changing the AddModule command in your -src/Configuration into a SharedModule command (see -src/INSTALL file). After a module is compiled into a DSO named -mod_foo.so you can use mod_so's -LoadModule command in your httpd.conf file to load -this module at server startup or restart. +named mod_so.c which has to be +statically compiled into the Apache core. It is the only module besides +http_core.c which cannot be put into a DSO itself +(bootstrapping!). Practically all other distributed Apache modules then can +then be placed into a DSO by individually enabling the DSO build for them via +configure's --enable-shared option (see top-level +INSTALL file) or by changing the AddModule command +in your src/Configuration into a SharedModule +command (see src/INSTALL file). After a module is compiled into +a DSO named mod_foo.so you can use mod_so's LoadModule command in your +httpd.conf file to load this module at server startup or restart.

To simplify this creation of DSO files for Apache modules (especially for third-party modules) a new support program named apxs (APache @@ -319,7 +320,8 @@ $ apxs -i -a -n foo mod_foo.so