Branches
Releases
|
Version
|
Focus
|
Date
|
|
3.4
|
Major bugfixes |
10-Apr-2007 19:21 |
|
3.3
|
Minor bugfixes |
23-Mar-2007 20:53 |
|
3.2.1
|
Minor bugfixes |
30-Aug-2003 05:52 |
|
3.2
|
Major bugfixes |
13-May-2002 09:08 |
|
3.0.4
|
Major bugfixes |
16-Jan-2002 08:11 |
|
3.0.3
|
Minor bugfixes |
01-Nov-2001 18:40 |
|
3.0.1
|
Minor bugfixes |
03-Oct-2001 08:59 |
|
3.0
|
N/A |
23-Jul-2001 07:10 |
|
2.11.14
|
Minor bugfixes |
10-Jul-2001 19:17 |
|
2.11.13
|
Minor bugfixes |
20-Jun-2001 13:45 |
Comments
[»]
to compile on redhat enterprise 3
by mttrhll - Jun 23rd 2005 12:57:38
I thought this may be helpful. For use on RHEL ES 3 do the following:
-make sure you have httpd-devel (gives you apxs, apr-config, etc...)
-download source tarball (I used 4.02a) and extract it, then cd into the
new directory.
-change the following in the Makefile:
top_srcdir=/usr/lib/httpd
top_builddir=/usr/lib/httpd
include /usr/lib/httpd/build/special.mk
-Follow the instructions in the INSTALL file.
fin.
[reply]
[top]
[»]
Brief howto on mod_layout
by Dan Anderson - Nov 4th 2002 17:29:37
0. Download. The version for Apache 1.x differs from 2.x.
1. Read the README and INSTALL files.
2. If you don't have apache in /usr/local/apache2, modify file
Makefile.
3. Make sure apxs is in your path (use which apxs)
4. Type: make
5. As root, type make install
6. Restart Apache: /etc/init.d/httpd restart
7. Sample configuration lines:
<Directory /usr/local/apache/htdocs/dan/docs>
AllowOverride All
# mod_layout:
AddOutputFilter LAYOUT html
AddOutputFilter LAYOUT shtml
AddOutputFilter LAYOUT htm
AddOutputFilter LAYOUT php
LayoutHeader /docs/bannerad.h
#LayoutFooter /docs/bannerad.h
IndexIgnore bannerad.h
</Directory>
[reply]
[top]
|