[Modcplusplus-devel] (johnksterling) mod_cplusplus INSTALL
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2004-05-18 02:55:32
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: INSTALL Log Message: update install file to help people who like to use the linux distrobutions apache install (which is in a wierd place) =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/INSTALL,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- INSTALL 26 Sep 2003 01:36:38 -0000 1.4 +++ INSTALL 18 May 2004 02:55:25 -0000 1.5 @@ -1 +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 + +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-httpd=/usr --with-apr=/usr/include/apr-0 + +As I learn about distrobutions I'll do my best to have them 'just work' for you. |