hi,
I'm still experimenting with Embperl from cvs and Apache 2 /
mod_perl 2 on my Debian system. I attach a patch which contains
two modifications to Makefile.PL:
1) the name for mod_actions is "actions_module" with an "s"; this
let make test fail.
2) At least on Debian unstable the apr_*.h files reside in
/usr/include/apr-0/ and therefore cannot be found; I added that
to $i, which I hope is the right location for such things.
The offline tests of make test now work for me (todays cvs
version), but I still made no progress with the "Invalid command
'Embperl_UseEnv'" problem.
Andre
--- embperl.orig/Makefile.PL 2003-03-30 20:57:01.000000000 +0200
+++ embperl/Makefile.PL 2003-04-06 15:36:05.000000000 +0200
@@ -68,7 +68,7 @@
win32filetext => 'ApacheModuleCgi.dll or mod_cgi.so',
},
- 'mod_actions.c' => { name => 'action_module',
+ 'mod_actions.c' => { name => 'actions_module',
path => ['$apache_src/modules/standard/mod_actions.so',
'$EPBINDIR/modules/mod_actions.so', '$apache_src/mod_actions.so'],
win32path =>
['$apache_src/modules/standard/apachemoduleactions.dll',
'$EPBINDIR/modules/apachemoduleactions.dll', '$EPBINDIR/modules/mod_actions.so'],
file => ['mod_actions.so','apachemoduleactions.dll'],
@@ -714,7 +714,7 @@
}
else
{
- $i = "-I$inc_dir -I$apache_src/regex -I$apache_src/os/unix" ;
+ $i = "-I$inc_dir -I$apache_src/regex -I$apache_src/os/unix
-I$apache_src/../apr-0" ;
$o = '' ;
}
$d .= ' -DAPACHE' ;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]