One thing I forgot to mention ... I completely forgot I'd done it, but it's 
rather 
important.  In order to keep apxs2 from failing during the configure stage with 
a 
message about APR_VERSION not existing, you can either add the following to
/usr/share/apache2/build/config_vars.mk

APR_VERSION = 0.9.5

Or, you can hack acinclude.m4 (this is probably your only option if you don't
have root access on your system or don't want to edit something global like
that).  I just added the APR_VERSION line to config_vars.mk, as that's the
simplest thing.  Otherwise, you'll have to change the line in build-clean that
patches acinclude.m4:

(echo "38s/httpd/apache2"; echo "w"; echo "q") | ed -s acinclude.m4

to something like (I haven't tested this, but you get the idea, man ed if you
don't):

(echo "38s/httpd/apache2"; echo "39c"; \
 echo "                APR_MAJOR_VERSION=0"; echo "."; \
 echo "w"; echo "q") | ed -s acinclude.m4

It needs to be in build-clean because as I have it set up, the entire tree
will be overwritten each time you execute the file, meaning that local changes
to acinclude.m4 won't be around next time you invoke the script.

I'd just add the line to config_vars.mk unless you have some reason not to.

Alexander


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to