[BACK]Return to defines.h.in CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

Diff for /src/usr.bin/less/Attic/defines.h.in between version 1.1.1.3 and 1.1.1.4

version 1.1.1.3, 2011/09/16 17:47:04 version 1.1.1.4, 2014/04/25 13:33:45
Line 182 
Line 182 
 /*  /*
  * Sizes of various buffers.   * Sizes of various buffers.
  */   */
   #if 0 /* old sizes for small memory machines */
 #define CMDBUF_SIZE     512     /* Buffer for multichar commands */  #define CMDBUF_SIZE     512     /* Buffer for multichar commands */
 #define UNGOT_SIZE      100     /* Max chars to unget() */  #define UNGOT_SIZE      100     /* Max chars to unget() */
 #define LINEBUF_SIZE    1024    /* Max size of line in input file */  #define LINEBUF_SIZE    1024    /* Max size of line in input file */
Line 191 
Line 192 
 #define TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */  #define TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */
 #define TAGLINE_SIZE    512     /* Max size of line in tags file */  #define TAGLINE_SIZE    512     /* Max size of line in tags file */
 #define TABSTOP_MAX     32      /* Max number of custom tab stops */  #define TABSTOP_MAX     32      /* Max number of custom tab stops */
   #else /* more reasonable sizes for modern machines */
   #define CMDBUF_SIZE     2048    /* Buffer for multichar commands */
   #define UNGOT_SIZE      200     /* Max chars to unget() */
   #define LINEBUF_SIZE    1024    /* Initial max size of line in input file */
   #define OUTBUF_SIZE     1024    /* Output buffer */
   #define PROMPT_SIZE     2048    /* Max size of prompt string */
   #define TERMBUF_SIZE    2048    /* Termcap buffer for tgetent */
   #define TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */
   #define TAGLINE_SIZE    1024    /* Max size of line in tags file */
   #define TABSTOP_MAX     128     /* Max number of custom tab stops */
   #endif
   
 /* Settings automatically determined by configure.  */  /* Settings automatically determined by configure.  */
   
Line 225 
Line 237 
 /* Define to 1 if you have the `fsync' function. */  /* Define to 1 if you have the `fsync' function. */
 #undef HAVE_FSYNC  #undef HAVE_FSYNC
   
   /* GNU regex library */
   #undef HAVE_GNU_REGEX
   
 /* Define to 1 if you have the <inttypes.h> header file. */  /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H  #undef HAVE_INTTYPES_H
   
 /* Define to 1 if you have the `gen' library (-lgen). */  
 #undef HAVE_LIBGEN  
   
 /* Define to 1 if you have the `intl' library (-lintl). */  
 #undef HAVE_LIBINTL  
   
 /* Define to 1 if you have the `PW' library (-lPW). */  
 #undef HAVE_LIBPW  
   
 /* Define to 1 if you have the <limits.h> header file. */  /* Define to 1 if you have the <limits.h> header file. */
 #undef HAVE_LIMITS_H  #undef HAVE_LIMITS_H

Legend:
Removed from v.1.1.1.3  
changed lines
  Added in v.1.1.1.4