richter     01/05/15 23:45:27

  Modified:    .        Tag: Embperl2c Changes.pod Embperl.pm Embperl.pod
                        EmbperlD.pod Makefile.PL epcmd.c
               test/conf Tag: Embperl2c httpd.conf.src startup.pl
                        startup_dso.pl
  Log:
  Embperl 2 - source sync with 1.3.2
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.129.4.23 +8 -0      embperl/Changes.pod
  
  Index: Changes.pod
  ===================================================================
  RCS file: /home/cvs/embperl/Changes.pod,v
  retrieving revision 1.129.4.22
  retrieving revision 1.129.4.23
  diff -u -r1.129.4.22 -r1.129.4.23
  --- Changes.pod       2001/05/15 14:19:19     1.129.4.22
  +++ Changes.pod       2001/05/16 06:45:18     1.129.4.23
  @@ -135,6 +135,14 @@
      - quote pathnames in Makefile to allow directories like "Program Files".
        Spotted by Lukas Zapletal.
      - Added epocgi.pl which allow use of EmbperlObject as CGI script.
  +   - Added a dTHR to function CmdVar to make Embperl compile with threaded
  +     Perl 5.005. Patch from Michael George III.
  +   - EMBPERL_SESSION_ARGS can now accept pathes with spaces inside by quoteing
  +     an argument e.g. PerlSetEnv EMBPERL_SESSION_ARGS "'Directory=/Session Files/'".
  +     Spotted by Lukas Zapletal.
  +   - Perl search path (@INC) in make test is set to abosulte paths to be independend
  +     of directory changes that Apache might issue. Spotted by Randy Korbes.
  +
   
   =head1 1.3.1 (RELEASE)   13 Feb. 2001
   
  
  
  
  1.118.4.39 +4 -2      embperl/Embperl.pm
  
  Index: Embperl.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl.pm,v
  retrieving revision 1.118.4.38
  retrieving revision 1.118.4.39
  diff -u -r1.118.4.38 -r1.118.4.39
  --- Embperl.pm        2001/05/11 07:13:36     1.118.4.38
  +++ Embperl.pm        2001/05/16 06:45:19     1.118.4.39
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: Embperl.pm,v 1.118.4.38 2001/05/11 07:13:36 richter Exp $
  +#   $Id: Embperl.pm,v 1.118.4.39 2001/05/16 06:45:19 richter Exp $
   #
   ###################################################################################
   
  @@ -364,6 +364,8 @@
   # Setup Sessionhandling
   #
   
  +use Text::ParseWords ;
  +
   $SessionMgnt = 0 ;
   if (defined ($ENV{EMBPERL_SESSION_CLASSES}))
       { # Apache::Session 1.xx
  @@ -379,7 +381,7 @@
           my @args  ;
           if (defined ($ENV{EMBPERL_SESSION_ARGS}))
               {
  -         my @arglist = split /\s+/, $ENV{EMBPERL_SESSION_ARGS} ;
  +         my @arglist = quotewords ('\s+', 0, $ENV{EMBPERL_SESSION_ARGS}) ;
            foreach (@arglist)
                {
                /^(.*?)\s*=\s*(.*?)$/ ;
  
  
  
  1.56.4.6  +2 -1      embperl/Embperl.pod
  
  Index: Embperl.pod
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl.pod,v
  retrieving revision 1.56.4.5
  retrieving revision 1.56.4.6
  diff -u -r1.56.4.5 -r1.56.4.6
  --- Embperl.pod       2001/05/11 07:13:37     1.56.4.5
  +++ Embperl.pod       2001/05/16 06:45:20     1.56.4.6
  @@ -1059,9 +1059,10 @@
   =head2 EMBPERL_SESSION_ARGS
   
   List of arguments for Apache::Session classes (see L<"Session handling">)
  +Arguments that contains spaces can be quoted.
   Example:
   
  -  PerlSetEnv EMBPERL_SESSION_ARGS "DataSource=dbi:mysql:session UserName=www 
Password=secret"
  +  PerlSetEnv EMBPERL_SESSION_ARGS "DataSource=dbi:mysql:session UserName=www 
'Password=secret word'"
   
   =head2 EMBPERL_SESSION_HANDLER_CLASS (1.3b3 and higher)
   
  
  
  
  1.29.4.6  +4 -2      embperl/EmbperlD.pod
  
  Index: EmbperlD.pod
  ===================================================================
  RCS file: /home/cvs/embperl/EmbperlD.pod,v
  retrieving revision 1.29.4.5
  retrieving revision 1.29.4.6
  diff -u -r1.29.4.5 -r1.29.4.6
  --- EmbperlD.pod      2001/05/11 07:13:39     1.29.4.5
  +++ EmbperlD.pod      2001/05/16 06:45:20     1.29.4.6
  @@ -981,9 +981,11 @@
   =head2 EMBPERL_SESSION_ARGS
   
   Liste von zus�tzlichen Parametern f�r I<Apache::Session> Klassen (Leerzeichen 
getrennt)
  -(siehe L<"Session Handling"|"Session Handling (ab 1.2b2)">). Beispiel:
  +(siehe L<"Session Handling"|"Session Handling (ab 1.2b2)">). 
  +Argumente die Leerzeichnen enthalten, m�ssen in Anf�hrungszeichen geschriebene 
werden.
  +Beispiel:
   
  -  PerlSetEnv EMBPERL_SESSION_ARGS "DataSource=dbi:mysql:session UserName=www 
Password=secret"
  +  PerlSetEnv EMBPERL_SESSION_ARGS "DataSource=dbi:mysql:session UserName=www 
'Password=secret word'"
   
   =head2 EMBPERL_SESSION_HANDLER_CLASS (ab 1.3b3)
   
  
  
  
  1.31.4.14 +35 -13    embperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/embperl/Makefile.PL,v
  retrieving revision 1.31.4.13
  retrieving revision 1.31.4.14
  diff -u -r1.31.4.13 -r1.31.4.14
  --- Makefile.PL       2001/05/15 14:19:34     1.31.4.13
  +++ Makefile.PL       2001/05/16 06:45:21     1.31.4.14
  @@ -27,50 +27,58 @@
       ( 
         'mod_perl.c' => { name     => 'perl_module', 
                        path        => ['$apache_src/modules/perl/libperl.so', 
'$EPBINDIR/modules/libperl.so', '$apache_src/mod_perl.so'],
  -                     win32path   => ['$mpdll', '$mpdll/apachemoduleperl.dll', 
'$mpdll/mod_perl.so', '$apache_src/../modules/mod_perl.so', 
'$EPBINDIR/modules/apachemoduleperl.dll'],
  +                     win32path   => ['$mpdll', '$mpdll/apachemoduleperl.dll', 
'$mpdll/mod_perl.so', '$EPBINDIR/modules/apachemoduleperl.dll', 
'$EPBINDIR/modules/mod_perl.so'],
                        file        => 'libperl.so',
  +                     filetext    => 'libperl.so or mod_perl.so',
                        win32file   => 'apachemoduleperl.dll',
  +                     win32filetext   => 'ApacheModulePerl.dll or mod_perl.so',
                      },
         'mod_dir.c'  => { name     => 'dir_module', 
                        path        => ['$apache_src/modules/standard/mod_dir.so', 
'$EPBINDIR/modules/mod_dir.so', '$apache_src/mod_dir.so'],
  -                     win32path   => 
['$apache_src/modules/standard/apachemoduledir.dll', 
'$EPBINDIR/modules/apachemoduledir.dll'],
  +                     win32path   => 
['$apache_src/modules/standard/apachemoduledir.dll', 
'$EPBINDIR/modules/apachemoduledir.dll', '$EPBINDIR/modules/mod_dir.so'],
                        file        => 'mod_dir.so',
                        win32file   => 'apachemoduledir.dll',
  +                     win32filetext   => 'ApacheModuleDir.dll or mod_dir.so',
                      },
   
         'mod_env.c'  => { name     => 'env_module', 
                        path        => ['$apache_src/modules/standard/mod_env.so', 
'$EPBINDIR/modules/mod_env.so', '$apache_src/mod_env.so'],
  -                     win32path   => 
['$apache_src/modules/standard/apachemoduleenv.dll', 
'$EPBINDIR/modules/apachemoduleenv.dll'],
  +                     win32path   => 
['$apache_src/modules/standard/apachemoduleenv.dll', 
'$EPBINDIR/modules/apachemoduleenv.dll', '$EPBINDIR/modules/mod_env.so'],
                        file        => 'mod_env.so',
                        win32file   => 'apachemoduleenv.dll',
  +                     win32filetext   => 'ApacheModuleEnv.dll or mod_env.so',
                      },
   
         'mod_mime.c'  => { name            => 'mime_module', 
                        path        => ['$apache_src/modules/standard/mod_mime.so', 
'$EPBINDIR/modules/mod_mime.so', '$apache_src/mod_mime.so'],
  -                     win32path   => 
['$apache_src/modules/standard/apachemodulemime.dll', 
'$EPBINDIR/modules/apachemodulemime.dll'],
  +                     win32path   => 
['$apache_src/modules/standard/apachemodulemime.dll', 
'$EPBINDIR/modules/apachemodulemime.dll', '$EPBINDIR/modules/mod_mime.so'],
                        file        => 'mod_mime.so',
                        win32file   => 'apachemodulemime.dll',
  +                     win32filetext   => 'ApacheModuleMime.dll or mod_mime.so',
                      },
   
         'mod_alias.c'  => { name           => 'alias_module', 
                        path        => ['$apache_src/modules/standard/mod_alias.so', 
'$EPBINDIR/modules/mod_alias.so', '$apache_src/mod_alias.so'],
  -                     win32path   => 
['$apache_src/modules/standard/apachemodulealias.dll', 
'$EPBINDIR/modules/apachemodulealias.dll'],
  +                     win32path   => 
['$apache_src/modules/standard/apachemodulealias.dll', 
'$EPBINDIR/modules/apachemodulealias.dll', '$EPBINDIR/modules/mod_alias.so'],
                        file        => 'mod_alias.so',
                        win32file   => 'apachemodulealias.dll',
  +                     win32filetext   => 'ApacheModuleAlias.dll or mod_alias.so',
                      },
   
         'mod_cgi.c'  => { name     => 'cgi_module', 
                        path        => ['$apache_src/modules/standard/mod_cgi.so', 
'$EPBINDIR/modules/mod_cgi.so', '$apache_src/mod_cgi.so'],
  -                     win32path   => 
['$apache_src/modules/standard/apachemodulecgi.dll', 
'$EPBINDIR/modules/apachemodulecgi.dll'],
  +                     win32path   => 
['$apache_src/modules/standard/apachemodulecgi.dll', 
'$EPBINDIR/modules/apachemodulecgi.dll', '$EPBINDIR/modules/mod_cgi.so'],
                        file        => 'mod_cgi.so',
                        win32file   => 'apachemodulecgi.dll',
  +                     win32filetext   => 'ApacheModuleCgi.dll or mod_cgi.so',
                      },
   
         'mod_actions.c'  => { name         => 'action_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'],
  +                     win32path   => 
['$apache_src/modules/standard/apachemoduleactions.dll', 
'$EPBINDIR/modules/apachemoduleactions.dll', '$EPBINDIR/modules/mod_actions.so'],
                        file        => 'mod_actions.so',
                        win32file   => 'apachemoduleactions.dll',
  +                     win32filetext   => 'ApacheModuleActions.dll or mod_actions.so',
                      },
   
   
  @@ -521,8 +529,12 @@
       if ($win32)
        { 
           $i = "-I. -I\"$inc_dir\" -I\"$apache_src/regex\" 
-I\"$apache_src/os/win32\"" ;
  -     if (-e "$apache_src/../libexec/ApacheCore.lib")
  +     if (-e "$apache_src/libexec/ApacheCore.lib")
               {
  +         $o = " \"$apache_src/libexec/ApacheCore.lib\"" ;
  +         }
  +     elsif (-e "$apache_src/../libexec/ApacheCore.lib")
  +            {
            $o = " \"$apache_src/../libexec/ApacheCore.lib\"" ;
            }
        elsif (!-e "$apache_src/CoreD/ApacheCore.lib")
  @@ -620,10 +632,15 @@
           }
       else
           {
  -        $EPHTTPD = "$apache_src/../Apache.exe" ;
  -        $EPHTTPDDLL = "$apache_src/.." ;
  +        $EPHTTPD = "$apache_src/Apache.exe" ;
  +        $EPHTTPDDLL = "$apache_src" ;
           if (!-e $EPHTTPD) 
               {
  +            $EPHTTPD = "$apache_src/../Apache.exe" ;
  +            $EPHTTPDDLL = "$apache_src/.." ;
  +            }
  +        if (!-e $EPHTTPD) 
  +            {
               $EPHTTPD = "$apache_src/ApacheD/Apache.exe" ;
               $EPHTTPDDLL = "$apache_src/CoreD" ;
               }
  @@ -644,7 +661,7 @@
   
       ### check the apache version ###
                                   
  -    $ENV{PATH} .= ";\"$EPHTTPDDLL\"" if ($win32) ;
  +    $ENV{PATH} .= ";$EPHTTPDDLL" if ($win32) ;
   
       
       @EPAPACHEVERSION = start ("$EPHTTPD -v") ;
  @@ -667,6 +684,7 @@
            { # module not linked staticly
            $paths = $win32?$opt->{win32path}:$opt->{path} ;
            $modfile = $win32?$opt->{win32file}:$opt->{file} ;
  +         $modfiletext = ($win32?$opt->{win32filetext}:$opt->{filetext}) || $modfile 
;
            $found = 2 ;
            while ($found == 2)
                {
  @@ -714,7 +732,7 @@
                    {
                    my $w32msg = '' ;
                    $w32msg = "\nPlease enter full path including the drive letter!! " 
if ($win32) ;
  -                 $addmodpath = GetString ("Library for $mod not found, please enter 
path to $modfile $w32msg", "") ;
  +                 $addmodpath = GetString ("Library for $mod not found, please enter 
path to $modfiletext $w32msg", "") ;
                    $found = 2 ;
                    }
                }                           
  @@ -914,7 +932,11 @@
           }
   
       # Check for winsock2api
  -    if (open FH, "$inc_dir/../os/win32/os.h")
  +    
  +    my $os_h = "$inc_dir/os.h" ;
  +    $os_h = "$inc_dir/../os/win32/os.h" if (!-e $os_h) ;
  +    
  +    if (open FH, $os_h )
           {
           my @conf = <FH> ;
           close FH ;
  
  
  
  1.37.4.4  +2 -1      embperl/epcmd.c
  
  Index: epcmd.c
  ===================================================================
  RCS file: /home/cvs/embperl/epcmd.c,v
  retrieving revision 1.37.4.3
  retrieving revision 1.37.4.4
  diff -u -r1.37.4.3 -r1.37.4.4
  --- epcmd.c   2001/03/27 11:52:05     1.37.4.3
  +++ epcmd.c   2001/05/16 06:45:21     1.37.4.4
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: epcmd.c,v 1.37.4.3 2001/03/27 11:52:05 richter Exp $
  +#   $Id: epcmd.c,v 1.37.4.4 2001/05/16 06:45:21 richter Exp $
   #
   
###################################################################################*/
   
  @@ -857,6 +857,7 @@
       int    nFilepos = (sArg - r -> Buf.pBuf) ;
       SV *   pSV ;
   
  +    dTHR ;
   
       EPENTRY (CmdVar) ;
       
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.24.4.16 +39 -34    embperl/test/conf/httpd.conf.src
  
  Index: httpd.conf.src
  ===================================================================
  RCS file: /home/cvs/embperl/test/conf/httpd.conf.src,v
  retrieving revision 1.24.4.15
  retrieving revision 1.24.4.16
  diff -u -r1.24.4.15 -r1.24.4.16
  --- httpd.conf.src    2001/05/15 14:21:13     1.24.4.15
  +++ httpd.conf.src    2001/05/16 06:45:25     1.24.4.16
  @@ -3,9 +3,9 @@
   # Testconfig for HTML::Embperl make test
   #
   
  -ServerRoot $EPPATH/test
  +ServerRoot \"$EPPATH/test\"
   ServerName localhost
  -DocumentRoot $EPPATH/test
  +DocumentRoot \"$EPPATH/test\"
   Port $EPPORT
   EOD
   
  @@ -44,8 +44,12 @@
   
   SetEnv EMBPERL_DEBUG $EPDEBUG
   SetEnv EMBPERL_VIRTLOG /embperl/log
  -PerlSetEnv EMBPERL_LOG $EPPATH/test/tmp/test.log
  -SetEnv EMBPERL_LOG $EPPATH/test/tmp/test.log
  +PerlSetEnv EMBPERL_LOG \"$EPPATH/test/tmp/test.log\"
  +SetEnv EMBPERL_LOG \"$EPPATH/test/tmp/test.log\"
  +
  +PerlSetEnv EMBPERL_SRC \"$EPPATH\"
  +SetEnv EMBPERL_SRC \"$EPPATH\"
  +
   EOD
   
   
  @@ -61,7 +65,7 @@
   
   PerlSetEnv EMBPERL_SESSION_CLASS $EPSESSIONCLASS
   SetEnv EMBPERL_SESSION_CLASS $EPSESSIONCLASS
  -PerlSetEnv SESSION_FILE_DIRECTORY $EPPATH/test/tmp
  +PerlSetEnv SESSION_FILE_DIRECTORY \"$EPPATH/test/tmp\"
   PerlSetEnv SESSION_DBI_DATASOURCE $EPSESSIONDS
   
   PerlSetEnv EMBPERL_MAILDEBUG 1
  @@ -75,9 +79,9 @@
   
   #PerlSetEnv EMBPERL_SESSION_CLASSES "MemoryStore NullLocker"
   PerlSetEnv EMBPERL_SESSION_CLASSES "FileStore NullLocker"
  -PerlSetEnv EMBPERL_SESSION_ARGS "Directory=$EPPATH/test/tmp"
  +PerlSetEnv EMBPERL_SESSION_ARGS "'Directory=$EPPATH/test/tmp'"
   SetEnv EMBPERL_SESSION_CLASSES "FileStore NullLocker"
  -SetEnv EMBPERL_SESSION_ARGS "Directory=$EPPATH/test/tmp"
  +SetEnv EMBPERL_SESSION_ARGS "'Directory=$EPPATH/test/tmp'"
   EOD
        }
   elsif ($EPSESSIONVERSION && ($EPSESSIONVERSION > 1))
  @@ -85,9 +89,9 @@
   print OFH <<EOD ;
   
   PerlSetEnv EMBPERL_SESSION_CLASSES "File Null"
  -PerlSetEnv EMBPERL_SESSION_ARGS "Directory=$EPPATH/test/tmp"
  +PerlSetEnv EMBPERL_SESSION_ARGS "'Directory=$EPPATH/test/tmp'"
   SetEnv EMBPERL_SESSION_CLASSES "File Null"
  -SetEnv EMBPERL_SESSION_ARGS "Directory=$EPPATH/test/tmp"
  +SetEnv EMBPERL_SESSION_ARGS "'Directory=$EPPATH/test/tmp'"
   EOD
        }
   
  @@ -97,7 +101,7 @@
   
   SetEnv EMBPERL_ALLOW asc|\\.htm\$
   
  -PerlScript $EPPATH/test/conf/$EPSTARTUP
  +PerlScript \"$EPPATH/test/conf/$EPSTARTUP\"
   
   <Location /embperl/log>
   SetHandler perl-script
  @@ -110,12 +114,12 @@
   AddType text/html .htm
   AddType text/html .xhtm
   
  -Alias /embperl/sub/ $EPPATH/test/html/
  -Alias /embperl/ $EPPATH/test/html/
  -Alias /embperl2/ $EPPATH/test/html2/
  -Alias /eg/ $EPPATH/eg/
  -Alias /embperldbg/ $EPPATH/test/html/
  -Alias /registrydbg/ $EPPATH/test/html/registry/
  +Alias /embperl/sub/ \"$EPPATH/test/html/\"
  +Alias /embperl/ \"$EPPATH/test/html/\"
  +Alias /embperl2/ \"$EPPATH/test/html2/\"
  +Alias /eg/ \"$EPPATH/eg/\"
  +Alias /embperldbg/ \"$EPPATH/test/html/\"
  +Alias /registrydbg/ \"$EPPATH/test/html/registry/\"
   
   <Location /embperl/sub>
   SetHandler perl-script
  @@ -286,23 +290,24 @@
   </Location>
   
   
  -Alias /cgi-bin/ $EPPATH/test/html/
  -Alias /cgi-bin-32/ $EPPATH/test/html/
  -ScriptAlias /cgi/ $EPPATH/
  +Alias /cgi-bin/ \"$EPPATH/test/html/\"
  +Alias /cgi-bin-32/ \"$EPPATH/test/html/\"
  +ScriptAlias /cgi/ \"$EPPATH/\"
   
   <Location /cgi-bin>
   Action text/html /cgi/embpcgi.test.pl
   Options ExecCGI
  +</Location>
  +
  +
  +SetEnv CGIEMBPERL_OBJECT_BASE epobase.htm
  +SetEnv CGIEMBPERL_OBJECT_FALLBACK epofallback.htm
  +
  +<Location /cgi-bin/EmbperlObject>
  +Action text/html /cgi/epocgi.test.pl
  +Options ExecCGI
   </Location>
  -
  -SetEnv EMBPERL_OBJECT_BASE epobase.htm
  -SetEnv EMBPERL_OBJECT_FALLBACK epofallback.htm
  -
  -<Location /cgi-bin/EmbperlObject>
  -Action text/html /cgi/epocgi.test.pl
  -Options ExecCGI
  -</Location>
  -
  +
   
   <Location /cgi-bin-32>
   Action text/html /cgi/embpcgi.test.bat
  @@ -338,8 +343,8 @@
   
   <Location /embperl/EmbperlObject/base3>
   PerlSetEnv EMBPERL_OBJECT_BASE epobase3.htm
  -PerlSetEnv EMBPERL_OBJECT_STOPDIR $EPPATH/test/html/EmbperlObject
  -PerlSetEnv EMBPERL_OBJECT_ADDPATH $EPPATH/test/html/EmbperlObject/lib
  +PerlSetEnv EMBPERL_OBJECT_STOPDIR \"$EPPATH/test/html/EmbperlObject\"
  +PerlSetEnv EMBPERL_OBJECT_ADDPATH \"$EPPATH/test/html/EmbperlObject/lib\"
   PerlSetEnv EMBPERL_OBJECT_FALLBACK epofallback.htm
   PerlSetEnv EMBPERL_FILESMATCH \"\\.htm.?\$|\\.epl\$\"
   SetHandler perl-script
  @@ -349,8 +354,8 @@
   
   <Location /embperl/EmbperlObject/base2>
   PerlSetEnv EMBPERL_OBJECT_BASE epobase2.htm
  -PerlSetEnv EMBPERL_OBJECT_STOPDIR $EPPATH/test/html/EmbperlObject
  -PerlSetEnv EMBPERL_OBJECT_ADDPATH $EPPATH/test/html/EmbperlObject/lib
  +PerlSetEnv EMBPERL_OBJECT_STOPDIR \"$EPPATH/test/html/EmbperlObject\"
  +PerlSetEnv EMBPERL_OBJECT_ADDPATH \"$EPPATH/test/html/EmbperlObject/lib\"
   PerlSetEnv EMBPERL_OBJECT_FALLBACK epofallback.htm
   PerlSetEnv EMBPERL_FILESMATCH \"\\.htm.?\$|\\.epl\$\"
   SetHandler perl-script
  @@ -400,7 +405,7 @@
   <IfModule apache_ssl.c>
   SSLDisable
   SSLCacheServerPort gcache_port
  -SSLCacheServerPath $EPAPACHESRC/modules/ssl/gcache
  +SSLCacheServerPath \"$EPAPACHESRC/modules/ssl/gcache\"
   </IfModule>
   
   
  @@ -439,7 +444,7 @@
   <Location /embperl/asp>
   SetHandler perl-script
   PerlHandler Apache::ASP
  -PerlSetVar Global  $EPPATH/test/tmp
  +PerlSetVar Global  \"$EPPATH/test/tmp\"
   PerlSetVar Debug  0
   PerlSetVar CookiePath  /
   PerlSetVar NoState 1
  
  
  
  1.9.6.4   +2 -1      embperl/test/conf/startup.pl
  
  Index: startup.pl
  ===================================================================
  RCS file: /home/cvs/embperl/test/conf/startup.pl,v
  retrieving revision 1.9.6.3
  retrieving revision 1.9.6.4
  diff -u -r1.9.6.3 -r1.9.6.4
  --- startup.pl        2001/03/28 19:16:08     1.9.6.3
  +++ startup.pl        2001/05/16 06:45:26     1.9.6.4
  @@ -10,13 +10,14 @@
           eval " use Apache\:\:Session\:\:$EPSESSIONCLASS; " ;
           }
   
  -    my $cwd       = Cwd::fastcwd();
  +    my $cwd       = $ENV{EMBPERL_SRC} ;
       my $i = 0 ;
       foreach (@INC)
           {
           $INC[$i] = "$cwd/$_" if (/^(\.\/)?blib/) ;
           $i++ ;
           }
  +   
   
       } ;
   
  
  
  
  1.8.6.3   +1 -1      embperl/test/conf/startup_dso.pl
  
  Index: startup_dso.pl
  ===================================================================
  RCS file: /home/cvs/embperl/test/conf/startup_dso.pl,v
  retrieving revision 1.8.6.2
  retrieving revision 1.8.6.3
  diff -u -r1.8.6.2 -r1.8.6.3
  --- startup_dso.pl    2001/03/28 19:16:08     1.8.6.2
  +++ startup_dso.pl    2001/05/16 06:45:26     1.8.6.3
  @@ -10,7 +10,7 @@
           eval " use Apache\:\:Session\:\:$EPSESSIONCLASS; " ;
           }
   
  -    my $cwd       = Cwd::fastcwd();
  +    my $cwd       = $ENV{EMBPERL_SRC} ;
       my $i = 0 ;
       foreach (@INC)
           {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to