You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2002/06/15 04:01:20 UTC

cvs commit: modperl-2.0/src/modules/perl mod_perl.h

dougm       2002/06/14 19:01:20

  Modified:    src/modules/perl mod_perl.h
  Log:
  make sure MP_THREADED is true win32
  
  Revision  Changes    Path
  1.45      +4 -0      modperl-2.0/src/modules/perl/mod_perl.h
  
  Index: mod_perl.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/mod_perl.h,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- mod_perl.h	3 Jun 2002 23:41:18 -0000	1.44
  +++ mod_perl.h	15 Jun 2002 02:01:20 -0000	1.45
  @@ -6,7 +6,11 @@
   
   #define MP_COMPAT_1X /* backwards compat */
   
  +#ifdef WIN32
  +#define MP_THREADED 1
  +#else
   #define MP_THREADED (defined(USE_ITHREADS) && APR_HAS_THREADS)
  +#endif
   
   extern module AP_MODULE_DECLARE_DATA perl_module;