dougm       2002/09/04 11:00:55

  Modified:    src/modules/perl mod_perl.c
  Log:
  LoadModule needs to be RAW_ARGS, else syntax error in httpd.conf if
  mod_perl.so is loaded before any non-Perl LoadModules
  
  Revision  Changes    Path
  1.138     +1 -1      modperl-2.0/src/modules/perl/mod_perl.c
  
  Index: mod_perl.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/mod_perl.c,v
  retrieving revision 1.137
  retrieving revision 1.138
  diff -u -r1.137 -r1.138
  --- mod_perl.c        4 Sep 2002 17:56:50 -0000       1.137
  +++ mod_perl.c        4 Sep 2002 18:00:55 -0000       1.138
  @@ -584,7 +584,7 @@
       MP_CMD_DIR_TAKE2("PerlSetEnv", set_env, "PerlSetEnv"),
       MP_CMD_SRV_TAKE1("PerlPassEnv", pass_env, "PerlPassEnv"),
       MP_CMD_SRV_RAW_ARGS("<Perl", perl, "NOT YET IMPLEMENTED"),
  -    MP_CMD_SRV_TAKE1("LoadModule", load_module, "A Perl module"),
  +    MP_CMD_SRV_RAW_ARGS("LoadModule", load_module, "A Perl module"),
   #ifdef MP_TRACE
       MP_CMD_SRV_TAKE1("PerlTrace", trace, "Trace level"),
   #endif
  
  
  


Reply via email to