You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl-cvs@perl.apache.org by ri...@apache.org on 2001/04/25 14:11:13 UTC

cvs commit: embperl Makefile.PL ep.h epapinit.c epmain.c

richter     01/04/25 05:11:13

  Modified:    .        Tag: Embperl2c Makefile.PL ep.h epapinit.c epmain.c
  Log:
  Embperl 2 - Strip CR
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.31.4.10 +5 -5      embperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/embperl/Makefile.PL,v
  retrieving revision 1.31.4.9
  retrieving revision 1.31.4.10
  diff -u -r1.31.4.9 -r1.31.4.10
  --- Makefile.PL	2001/04/25 09:25:01	1.31.4.9
  +++ Makefile.PL	2001/04/25 12:11:01	1.31.4.10
  @@ -792,11 +792,11 @@
   
       $SessVer ||= 0 ;
   
  -    if (($FSVer = CheckModule ("File::Spec", "-> Required for EmbperlObject, make test will fail whithout File::Spec")) < 0.82)
  -        {
  -        print "-> EmbperlObject requires File::Spec 0.82 or higher, found $FSVer, please upgrade!\n" ;
  -        }
  -        
  +    if (($FSVer = CheckModule ("File::Spec", "-> Required for EmbperlObject, make test will fail whithout File::Spec")) < 0.82)
  +        {
  +        print "-> EmbperlObject requires File::Spec 0.82 or higher, found $FSVer, please upgrade!\n" ;
  +        }
  +        
       CheckModule ("CGI", "-> File Upload will not work without CGI.pm installed") ;
   
       ### write out test configuration file ###
  
  
  
  1.27.4.13 +4 -4      embperl/ep.h
  
  Index: ep.h
  ===================================================================
  RCS file: /home/cvs/embperl/ep.h,v
  retrieving revision 1.27.4.12
  retrieving revision 1.27.4.13
  diff -u -r1.27.4.12 -r1.27.4.13
  --- ep.h	2001/04/25 09:25:02	1.27.4.12
  +++ ep.h	2001/04/25 12:11:02	1.27.4.13
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: ep.h,v 1.27.4.12 2001/04/25 09:25:02 richter Exp $
  +#   $Id: ep.h,v 1.27.4.13 2001/04/25 12:11:02 richter Exp $
   #
   ###################################################################################*/
   
  @@ -144,9 +144,9 @@
   #elif MODULE_MAGIC_NUMBER >= 19980413
   #include "compat.h"
   #endif
  -
  -module MODULE_VAR_EXPORT embperl_module;
  -
  +
  +module MODULE_VAR_EXPORT embperl_module;
  +
   #endif
   
   struct tReq ;
  
  
  
  1.1.2.2   +49 -49    embperl/Attic/epapinit.c
  
  Index: epapinit.c
  ===================================================================
  RCS file: /home/cvs/embperl/Attic/epapinit.c,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- epapinit.c	2001/04/25 09:25:04	1.1.2.1
  +++ epapinit.c	2001/04/25 12:11:04	1.1.2.2
  @@ -1,49 +1,49 @@
  -/*###################################################################################
  -#
  -#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
  -#
  -#   You may distribute under the terms of either the GNU General Public
  -#   License or the Artistic License, as specified in the Perl README file.
  -#   For use with Apache httpd and mod_perl, see also Apache copyright.
  -#
  -#   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  -#   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  -#   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  -#
  -#   $Id: epapinit.c,v 1.1.2.1 2001/04/25 09:25:04 richter Exp $
  -#
  -###################################################################################*/
  -
  -
  -#include "ep.h"
  -
  -
  -
  -static void embperl_ApacheInit (server_rec *s, pool *p)
  -
  -    {
  -    ap_add_version_component ("Embperl/"VERSION) ;
  -    }
  -
  -
  -module MODULE_VAR_EXPORT embperl_module = {
  -    STANDARD_MODULE_STUFF,
  -    embperl_ApacheInit,         /* initializer */
  -    NULL,                       /* dir config creater */
  -    NULL,                       /* dir merger --- default is to override */
  -    NULL,                       /* server config */
  -    NULL,                       /* merge server configs */
  -    NULL,                       /* command table */
  -    NULL,                       /* handlers */
  -    NULL,                       /* filename translation */
  -    NULL,                       /* check_user_id */
  -    NULL,                       /* check auth */
  -    NULL,                       /* check access */
  -    NULL,                       /* type_checker */
  -    NULL,			/* fixups */
  -    NULL,                       /* logger */
  -    NULL,                       /* header parser */
  -    NULL,                       /* child_init */
  -    NULL,                       /* child_exit */
  -    NULL                        /* post read-request */
  -};
  +/*###################################################################################
  +#
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
  +#
  +#   You may distribute under the terms of either the GNU General Public
  +#   License or the Artistic License, as specified in the Perl README file.
  +#   For use with Apache httpd and mod_perl, see also Apache copyright.
  +#
  +#   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  +#   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  +#   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epapinit.c,v 1.1.2.2 2001/04/25 12:11:04 richter Exp $
  +#
  +###################################################################################*/
  +
  +
  +#include "ep.h"
  +
  +
  +
  +static void embperl_ApacheInit (server_rec *s, pool *p)
  +
  +    {
  +    ap_add_version_component ("Embperl/"VERSION) ;
  +    }
  +
  +
  +module MODULE_VAR_EXPORT embperl_module = {
  +    STANDARD_MODULE_STUFF,
  +    embperl_ApacheInit,         /* initializer */
  +    NULL,                       /* dir config creater */
  +    NULL,                       /* dir merger --- default is to override */
  +    NULL,                       /* server config */
  +    NULL,                       /* merge server configs */
  +    NULL,                       /* command table */
  +    NULL,                       /* handlers */
  +    NULL,                       /* filename translation */
  +    NULL,                       /* check_user_id */
  +    NULL,                       /* check auth */
  +    NULL,                       /* check access */
  +    NULL,                       /* type_checker */
  +    NULL,			/* fixups */
  +    NULL,                       /* logger */
  +    NULL,                       /* header parser */
  +    NULL,                       /* child_init */
  +    NULL,                       /* child_exit */
  +    NULL                        /* post read-request */
  +};
  
  
  
  1.75.4.31 +6 -6      embperl/epmain.c
  
  Index: epmain.c
  ===================================================================
  RCS file: /home/cvs/embperl/epmain.c,v
  retrieving revision 1.75.4.30
  retrieving revision 1.75.4.31
  diff -u -r1.75.4.30 -r1.75.4.31
  --- epmain.c	2001/04/25 09:25:06	1.75.4.30
  +++ epmain.c	2001/04/25 12:11:06	1.75.4.31
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: epmain.c,v 1.75.4.30 2001/04/25 09:25:06 richter Exp $
  +#   $Id: epmain.c,v 1.75.4.31 2001/04/25 12:11:06 richter Exp $
   #
   ###################################################################################*/
   
  @@ -467,7 +467,7 @@
                   pQueryString++ ;
                   nLen-- ;
                   break ;
  -            case ';':
  +            case ';':
               case '&':
                   pQueryString++ ;
                   nLen-- ;
  @@ -1362,10 +1362,10 @@
   
   #ifdef APACHE
       r -> pApacheReq = NULL ;
  -    if (_nIOType == epIOMod_Perl)
  -	{
  -	ap_add_module (&embperl_module) ;
  -	}
  +    if (_nIOType == epIOMod_Perl)
  +	{
  +	ap_add_module (&embperl_module) ;
  +	}
   #endif
       r -> bReqRunning = 0 ;
       
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-cvs-help@perl.apache.org