stas        2003/09/11 11:09:48

  Modified:    src/modules/perl mod_perl.c
  Log:
  complete the removal of the unsupported APR_VERSION_0_9_3 ifdefs
  
  Revision  Changes    Path
  1.182     +0 -5      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.181
  retrieving revision 1.182
  diff -u -u -r1.181 -r1.182
  --- mod_perl.c        25 Aug 2003 07:31:46 -0000      1.181
  +++ mod_perl.c        11 Sep 2003 18:09:48 -0000      1.182
  @@ -25,10 +25,6 @@
   static void modperl_hash_seed_init(apr_pool_t *p) 
   {
   #ifdef MP_NEED_HASH_SEED_FIXUP
  -
  -/* XXX: not sure how to portably handle env reading for older apr
  - * libs, for now just ignore it */
  -#ifdef APR_VERSION_0_9_3_PLUS
       char *s;
       /* check if there is a specific hash seed passed via the env var
        * and if that's the case -- use it */
  @@ -42,7 +38,6 @@
               MP_init_hash_seed_set = TRUE;
           }
       }
  -#endif
       
       /* calculate our own random hash seed */
       if (!MP_init_hash_seed_set) {
  
  
  

Reply via email to