From: Jeff Trawick Date: Wed, 10 Jan 2001 19:48:08 +0000 (+0000) Subject: update some references to the old prefix/libexec directory X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c457facff2d4344f48ecbfe74d92357cc8385d24;p=apache update some references to the old prefix/libexec directory git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87646 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index 87b8960ed3..8d4d90d9cd 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -181,7 +181,7 @@ MaxRequestsPerChild 0 # the order below without expert advice. # # Example: -# LoadModule foo_module libexec/mod_foo.so +# LoadModule foo_module modules/mod_foo.so ### Section 2: 'Main' server configuration # diff --git a/docs/man/apxs.8 b/docs/man/apxs.8 index 1286454457..86af3b15bd 100644 --- a/docs/man/apxs.8 +++ b/docs/man/apxs.8 @@ -168,8 +168,8 @@ tool: $ apxs -i -a -c mod_foo.c gcc -fpic -DSHARED_MODULE -I/path/to/apache/include -c mod_foo.c ld -Bshareable -o mod_foo.so mod_foo.o - cp mod_foo.so /path/to/apache/libexec/mod_foo.so - chmod 755 /path/to/apache/libexec/mod_foo.so + cp mod_foo.so /path/to/apache/modules/mod_foo.so + chmod 755 /path/to/apache/modules/mod_foo.so [activating module `foo' in /path/to/apache/etc/httpd.conf] $ apachectl restart /path/to/apache/sbin/apachectl restart: httpd not running, trying to start @@ -327,7 +327,7 @@ DSO installation and configuration options: This indicates the installation operation and installs one or more dynamically shared objects into the server's -.I libexec +.I modules directory. .TP 12 .B \-a @@ -375,14 +375,14 @@ directive is present to load this shared object. To simplify this step .B apxs provides an automatic way to install the shared object in its -"libexec" directory and updating the +"modules" directory and updating the .B httpd.conf file accordingly. This can be achieved by running: .nf $ apxs -i -a mod_foo.c - cp mod_foo.so /path/to/apache/libexec/mod_foo.so - chmod 755 /path/to/apache/libexec/mod_foo.so + cp mod_foo.so /path/to/apache/modules/mod_foo.so + chmod 755 /path/to/apache/modules/mod_foo.so [activating module `foo' in /path/to/apache/etc/httpd.conf] $ _ .fi @@ -390,7 +390,7 @@ file accordingly. This can be achieved by running: This way a line named .nf - LoadModule foo_module libexec/mod_foo.so + LoadModule foo_module modules/mod_foo.so .fi is added to the configuration file if still not present. @@ -423,8 +423,8 @@ load it into the Apache server: gcc -fpic -DSHARED_MODULE -I/path/to/apache/include -c mod_foo.c ld -Bshareable -o mod_foo.so mod_foo.o apxs -i -a -n "foo" mod_foo.so - cp mod_foo.so /path/to/apache/libexec/mod_foo.so - chmod 755 /path/to/apache/libexec/mod_foo.so + cp mod_foo.so /path/to/apache/modules/mod_foo.so + chmod 755 /path/to/apache/modules/mod_foo.so [activating module `foo' in /path/to/apache/etc/httpd.conf] apachectl restart /path/to/apache/sbin/apachectl restart: httpd not running, trying to start diff --git a/docs/manual/dso.html b/docs/manual/dso.html index 66e6fc9841..ad324c8d82 100644 --- a/docs/manual/dso.html +++ b/docs/manual/dso.html @@ -237,10 +237,10 @@ $ make install << Rule SHARED_CORE=default >> Rule SHARED_CORE=yes << EXTRA_CFLAGS= - >> EXTRA_CFLAGS= -DSHARED_CORE_DIR=\"/path/to/install/libexec\" + >> EXTRA_CFLAGS= -DSHARED_CORE_DIR=\"/path/to/install/modules\" $ make -$ cp src/libhttpd.so* /path/to/install/libexec/ -$ cp src/libhttpd.ep /path/to/install/libexec/ +$ cp src/libhttpd.so* /path/to/install/modules/ +$ cp src/libhttpd.ep /path/to/install/modules/ $ cp src/httpd /path/to/install/bin/ @@ -267,9 +267,9 @@ $ make install << AddModule modules/xxxx/mod_foo.o >> SharedModule modules/xxxx/mod_foo.so $ make -$ cp src/xxxx/mod_foo.so /path/to/install/libexec +$ cp src/xxxx/mod_foo.so /path/to/install/modules - Edit /path/to/install/etc/httpd.conf - >> LoadModule foo_module /path/to/install/libexec/mod_foo.so + >> LoadModule foo_module /path/to/install/modules/mod_foo.so @@ -295,9 +295,9 @@ $ cp /path/to/3rdparty/mod_foo.c /path/to/apache-1.3/src/modules/extra/ - Edit src/Configuration: >> SharedModule modules/extra/mod_foo.so $ make -$ cp src/xxxx/mod_foo.so /path/to/install/libexec +$ cp src/xxxx/mod_foo.so /path/to/install/modules - Edit /path/to/install/etc/httpd.conf - >> LoadModule foo_module /path/to/install/libexec/mod_foo.so + >> LoadModule foo_module /path/to/install/modules/mod_foo.so diff --git a/docs/manual/dso.html.en b/docs/manual/dso.html.en index 66e6fc9841..ad324c8d82 100644 --- a/docs/manual/dso.html.en +++ b/docs/manual/dso.html.en @@ -237,10 +237,10 @@ $ make install << Rule SHARED_CORE=default >> Rule SHARED_CORE=yes << EXTRA_CFLAGS= - >> EXTRA_CFLAGS= -DSHARED_CORE_DIR=\"/path/to/install/libexec\" + >> EXTRA_CFLAGS= -DSHARED_CORE_DIR=\"/path/to/install/modules\" $ make -$ cp src/libhttpd.so* /path/to/install/libexec/ -$ cp src/libhttpd.ep /path/to/install/libexec/ +$ cp src/libhttpd.so* /path/to/install/modules/ +$ cp src/libhttpd.ep /path/to/install/modules/ $ cp src/httpd /path/to/install/bin/ @@ -267,9 +267,9 @@ $ make install << AddModule modules/xxxx/mod_foo.o >> SharedModule modules/xxxx/mod_foo.so $ make -$ cp src/xxxx/mod_foo.so /path/to/install/libexec +$ cp src/xxxx/mod_foo.so /path/to/install/modules - Edit /path/to/install/etc/httpd.conf - >> LoadModule foo_module /path/to/install/libexec/mod_foo.so + >> LoadModule foo_module /path/to/install/modules/mod_foo.so @@ -295,9 +295,9 @@ $ cp /path/to/3rdparty/mod_foo.c /path/to/apache-1.3/src/modules/extra/ - Edit src/Configuration: >> SharedModule modules/extra/mod_foo.so $ make -$ cp src/xxxx/mod_foo.so /path/to/install/libexec +$ cp src/xxxx/mod_foo.so /path/to/install/modules - Edit /path/to/install/etc/httpd.conf - >> LoadModule foo_module /path/to/install/libexec/mod_foo.so + >> LoadModule foo_module /path/to/install/modules/mod_foo.so diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 9bb2f5e97a..6b115381bb 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -994,8 +994,8 @@ Example: # httpd.conf <IfDefine ReverseProxy> - LoadModule rewrite_module libexec/mod_rewrite.so - LoadModule proxy_module libexec/libproxy.so + LoadModule rewrite_module modules/mod_rewrite.so + LoadModule proxy_module modules/libproxy.so </IfDefine> diff --git a/docs/manual/mod/mod_so.html b/docs/manual/mod/mod_so.html index 9649d150c5..5850c7b2a8 100644 --- a/docs/manual/mod/mod_so.html +++ b/docs/manual/mod/mod_so.html @@ -116,7 +116,7 @@ two modules into a single module for all operating systems. libhttpd.dll shared library is compiled. You may also have to change the compiler settings to ensure that the Apache header files are correctly located. You can find this library in your server root's - libexec directory. It is best to grab an existing module .dsp file + modules directory. It is best to grab an existing module .dsp file from the tree to assure the build environment is configured correctly, or alternately compare the compiler and link options to your .dsp.