]> granicus.if.org Git - apache/commitdiff
update some references to the old prefix/libexec directory
authorJeff Trawick <trawick@apache.org>
Wed, 10 Jan 2001 19:48:08 +0000 (19:48 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 10 Jan 2001 19:48:08 +0000 (19:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87646 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-std.conf
docs/man/apxs.8
docs/manual/dso.html
docs/manual/dso.html.en
docs/manual/mod/core.html
docs/manual/mod/mod_so.html

index 87b8960ed30bebcf35a7b006aa5a18ba961be4cc..8d4d90d9cdde7b0582606d84592abe5acb4b13f9 100644 (file)
@@ -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
 #
index 1286454457bd0e380b802d7b9526239aa4ac0cf0..86af3b15bd15a81dcef27c02a9dea722c9be0aec 100644 (file)
@@ -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
index 66e6fc984120fe2d77feb15f1d177f35624a39ce..ad324c8d82caf236e04346e2bb83ba5381f18f99 100644 (file)
@@ -237,10 +237,10 @@ $ make install
   &lt;&lt; Rule SHARED_CORE=default
   &gt;&gt; Rule SHARED_CORE=yes
   &lt;&lt; EXTRA_CFLAGS= 
-  &gt;&gt; EXTRA_CFLAGS= -DSHARED_CORE_DIR=\"/path/to/install/libexec\"
+  &gt;&gt; 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/
 </PRE>    
 </TD></TR></TABLE>
@@ -267,9 +267,9 @@ $ make install
   &lt;&lt; AddModule    modules/xxxx/mod_foo.o
   &gt;&gt; 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
-  &gt;&gt; LoadModule foo_module /path/to/install/libexec/mod_foo.so
+  &gt;&gt; LoadModule foo_module /path/to/install/modules/mod_foo.so
 </PRE>
 </TD></TR></TABLE>
 </UL>
@@ -295,9 +295,9 @@ $ cp /path/to/3rdparty/mod_foo.c /path/to/apache-1.3/src/modules/extra/
 - Edit src/Configuration:
   &gt;&gt; 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
-  &gt;&gt; LoadModule foo_module /path/to/install/libexec/mod_foo.so
+  &gt;&gt; LoadModule foo_module /path/to/install/modules/mod_foo.so
 </PRE>
 </TD></TR></TABLE>
 </UL>
index 66e6fc984120fe2d77feb15f1d177f35624a39ce..ad324c8d82caf236e04346e2bb83ba5381f18f99 100644 (file)
@@ -237,10 +237,10 @@ $ make install
   &lt;&lt; Rule SHARED_CORE=default
   &gt;&gt; Rule SHARED_CORE=yes
   &lt;&lt; EXTRA_CFLAGS= 
-  &gt;&gt; EXTRA_CFLAGS= -DSHARED_CORE_DIR=\"/path/to/install/libexec\"
+  &gt;&gt; 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/
 </PRE>    
 </TD></TR></TABLE>
@@ -267,9 +267,9 @@ $ make install
   &lt;&lt; AddModule    modules/xxxx/mod_foo.o
   &gt;&gt; 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
-  &gt;&gt; LoadModule foo_module /path/to/install/libexec/mod_foo.so
+  &gt;&gt; LoadModule foo_module /path/to/install/modules/mod_foo.so
 </PRE>
 </TD></TR></TABLE>
 </UL>
@@ -295,9 +295,9 @@ $ cp /path/to/3rdparty/mod_foo.c /path/to/apache-1.3/src/modules/extra/
 - Edit src/Configuration:
   &gt;&gt; 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
-  &gt;&gt; LoadModule foo_module /path/to/install/libexec/mod_foo.so
+  &gt;&gt; LoadModule foo_module /path/to/install/modules/mod_foo.so
 </PRE>
 </TD></TR></TABLE>
 </UL>
index 9bb2f5e97af4557f4352f17eb09596748b232195..6b115381bb50af4c2179ee9f077643dd910f601f 100644 (file)
@@ -994,8 +994,8 @@ Example:
 
   # httpd.conf
   &lt;IfDefine ReverseProxy&gt;
-  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
   &lt;/IfDefine&gt;
 </PRE>
 
index 9649d150c5588a99cd84c28dc4ca4186544a1f15..5850c7b2a89622d9a7e6a362265c92841a94dfa4 100644 (file)
@@ -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.</P>