[BACK]Return to config.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/Attic/config.h between version 1.10 and 1.11

version 1.10, 2001/05/03 13:41:03 version 1.11, 2001/05/23 12:34:41
Line 1 
Line 1 
   #ifndef CONFIG_H
   #define CONFIG_H
   
 /*      $OpenPackages$ */  /*      $OpenPackages$ */
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*      $NetBSD: config.h,v 1.7 1996/11/06 17:59:03 christos Exp $      */  /*      $NetBSD: config.h,v 1.7 1996/11/06 17:59:03 christos Exp $      */
Line 143 
Line 146 
 #define FEATURE_CONDINCLUDE     256  #define FEATURE_CONDINCLUDE     256
 #define FEATURE_ASSIGN          512  #define FEATURE_ASSIGN          512
 #define FEATURE_EXECMOD         1024  #define FEATURE_EXECMOD         1024
   
   /*
    * There are several places where expandable buffers are used (parse.c and
    * var.c). This constant is merely the starting point for those buffers. If
    * lines tend to be much shorter than this, it would be best to reduce BSIZE.
    * If longer, it should be increased. Reducing it will cause more copying to
    * be done for longer lines, but will save space for shorter ones. In any
    * case, it ought to be a power of two simply because most storage allocation
    * schemes allocate in powers of two.
    */
   #define MAKE_BSIZE              256     /* starting size for expandable buffers */
   
   #endif

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11