[Modcplusplus-devel] (johnksterling) mod_cplusplus INSTALL
Brought to you by:
gr84b8,
johnksterling
From: Mod C. C. L. <mod...@so...> - 2004-06-28 03:02:56
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: INSTALL Log Message: add not about soft linking =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/INSTALL,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- INSTALL 18 May 2004 02:55:25 -0000 1.5 +++ INSTALL 28 Jun 2004 03:02:51 -0000 1.6 @@ -3,6 +3,12 @@ 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. + 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. + + |