|
|
|
|
Re[4]: [mod-xslt users] OSX Tiger, Apache 2.2 and MAKE errors Denis F. Latypoff
|
|
From: "Denis F. Latypoff" <latypoff@xxxxxxxxx>
To: Ben Davies <users@xxxxxxxxxxxxxxxx>
Subject: Re[4]: [mod-xslt users] OSX Tiger, Apache 2.2 and MAKE errors
Date: Thu, 13 Mar 2008 20:32:01 +0600
References: <sympa.1205412745.4338.868@ml.mod-xslt2.com> <1626021718.20080313191057@yandex.ru> <a4754c780803130615k68846a04mfb497171845a2f3@mail.gmail.com> <1036553514.20080313194403@yandex.ru> <a4754c780803130655t59282209o8eed6550e29d314f@mail.gmail.com>
Reply-to: "Denis F. Latypoff" <latypoff@xxxxxxxxx>
Hello Ben,
Thursday, March 13, 2008, 7:55:54 PM, you wrote:
> Hmmm..
> I did as you asked, but still no success with make.
> I've included the output from configure to, if that helps; again, sorry for
> the length of my post:
you are not lier ;)
run this:
sed -i -r -e "s/apr-0/apr-1/g" configure
sed -i -r -e "s/util-0/util-1/g" configure
sed -i -r -e "s/char apr_send/const char *apr_version_string/g" configure
sed -i -r -e "s/apr_send/apr_version_string/g" configure
and then re-configure with:
--with-apxs=/usr/local/httpd-perl/bin/apxs \
--with-apr-config=/usr/local/httpd-perl/bin/apr-1-config \
--with-apu-config=/usr/local/httpd-perl/bin/apu-1-config
then you will meet one trouble which should be solved with the following
patch:
##########################################################################################
--- modxslt-2005072700/sapi/apache2/modxslt.c 2005-07-27 17:27:57.000000000
+0700
+++ modxslt-patched/sapi/apache2/modxslt.c 2008-03-13 20:29:42.000000000
+0600
@@ -82,12 +82,6 @@
}
void mxslt_ap2_brigade_dump(apr_bucket_brigade * brigade) {
- apr_bucket * bucket;
-
- APR_BRIGADE_FOREACH(bucket, brigade) {
- printf("bucket: %08x, type: %08x, length: %d, start: %d, data: %08x\n",
(int)bucket,
- (int)bucket->type, (int)bucket->length, (int)bucket->start,
(int)bucket->data);
- }
}
static void mxslt_ap2_child_init(apr_pool_t *p, server_rec *s) {
###########################################################################################
--
Best regards,
Denis Latypoff mailto:latypoff@xxxxxxxxx
| |
|