rse         99/11/28 05:28:08

  Modified:    src      CHANGES
               src/include ap_config.h
  Log:
  Fixed NEXT/OpenStep building by adding an fallback typedef for
  rlim_t to ap_config.h.
  
  Submitted by: Mark Miller <[EMAIL PROTECTED]>
  PR: 4906
  
  Revision  Changes    Path
  1.1458    +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1457
  retrieving revision 1.1458
  diff -u -r1.1457 -r1.1458
  --- CHANGES   1999/11/28 13:21:47     1.1457
  +++ CHANGES   1999/11/28 13:28:05     1.1458
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.10
   
  +  *) Fixed NEXT/OpenStep building by adding an fallback typedef for 
  +     rlim_t to ap_config.h.
  +     [Mark Miller <[EMAIL PROTECTED]>] PR#4906
  +
     *) Fix SHARED_CORE feature for HPUX by backing-out a change (comitted
        between 1.3.7 and 1.3.9) which changed the DSO extension from `sl' to
        `so'. This worked only for modules (where we load the DSO manually), but
  
  
  
  1.274     +1 -0      apache-1.3/src/include/ap_config.h
  
  Index: ap_config.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/include/ap_config.h,v
  retrieving revision 1.273
  retrieving revision 1.274
  diff -u -r1.273 -r1.274
  --- ap_config.h       1999/11/28 12:28:06     1.273
  +++ ap_config.h       1999/11/28 13:28:07     1.274
  @@ -350,6 +350,7 @@
   
   #elif defined(NEXT)
   typedef unsigned short mode_t;
  +typedef int rlim_t;
   #define HAVE_GMTOFF 1
   #undef NO_KILLPG
   #define NO_SETSID
  
  
  

Reply via email to