Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
INSTALL
Log Message:
update install docs to simplified configure process
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/INSTALL,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- INSTALL 28 Jun 2004 03:02:51 -0000 1.6
+++ INSTALL 27 Nov 2004 03:39:10 -0000 1.7
@@ -1,14 +1,8 @@
-If you have installed apache yourself (e.g. downloading from .org) you should be able to simply run:
-./autogen.sh --with-httpd=/path/to/installed/httpd-2.0
+Now to configure mod_cplusplus you only need to specify the path to apxs, for example if apxs is in /usr/sbin - simply type:
-If you are using the apache with a linux distrobution this may not be enough. Many distrobutions put apache includes in a strange place like /usr/include/apache2/ (I assume this is so they can support both 1.3 and 2.0 in the same server... although I would prefer /usr/apache2/include....). if you have one of these distrobutions the configure script *might* just find the include files for you. Otherwise you may need to point it at them. For the above example you can try:
+./autogen.sh --with-apxs=/usr/sbin/apxs
+once that completes type 'make' and then 'make check' to run the tests.
- ln -s /usr/include/apache2 /usr/share/apache2/include
- mkdir /usr/share/apache2/bin/
- ln -s /usr/bin/apxs2 /usr/share/apache2/bin/apxs
- ./autogen.sh --with-httpd=/usr/share/apache2 --with-apr=/usr/include/apr-0
-
-NOTE: I am working on making the configure scripts smart enough to detect these types of installs, so this should be a temporary workaround.
|