jim         96/09/12 14:18:52

  Modified:    src       conf.h
  Log:
  Little note about sbrk
  
  Revision  Changes    Path
  1.37      +11 -4     apache/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -C3 -r1.36 -r1.37
  *** conf.h    1996/08/23 18:19:09     1.36
  --- conf.h    1996/09/12 21:18:49     1.37
  ***************
  *** 50,56 ****
     *
     */
    
  ! /* $Id: conf.h,v 1.36 1996/08/23 18:19:09 jim Exp $ */
    
    /*
     * conf.h: system-dependant #defines and includes...
  --- 50,56 ----
     *
     */
    
  ! /* $Id: conf.h,v 1.37 1996/09/12 21:18:49 jim Exp $ */
    
    /*
     * conf.h: system-dependant #defines and includes...
  ***************
  *** 234,239 ****
  --- 234,242 ----
    #define getwd(d) getcwd(d,MAX_STRING_LEN)
    
    #elif defined(AUX)
  + /* These are to let -Wall compile more cleanly */
  + extern int strcasecmp(const char *, const char *);
  + extern int strncasecmp(const char *,const char *,unsigned);
    #undef HAVE_GMTOFF
    #undef NO_KILLPG
    #undef NO_SETSID
  ***************
  *** 243,252 ****
    #undef USE_FLOCK_SERIALIZED_ACCEPT
    #define HAVE_SHMGET
    #define MOVEBREAK           0x4000000
    #undef NO_LINGCLOSE
  - /* These are to let -Wall compile more cleanly */
  - extern int strcasecmp(const char *, const char *);
  - extern int strncasecmp(const char *,const char *,unsigned);
    
    #elif defined(SVR4)
    #define NO_KILLPG
  --- 246,259 ----
    #undef USE_FLOCK_SERIALIZED_ACCEPT
    #define HAVE_SHMGET
    #define MOVEBREAK           0x4000000
  + /*
  +  * NOTE: If when you run Apache under A/UX and you get a warning
  +  * that httpd couldn't move break, then the above value for
  +  * MOVEBREAK (64megs) is too large for your setup. Try reducing
  +  * to 0x2000000 which is still PLENTY of space. I doubt if
  +  * even on heavy systems sbrk() would be called at all...
  +  */
    #undef NO_LINGCLOSE
    
    #elif defined(SVR4)
    #define NO_KILLPG
  
  
  

Reply via email to