Diff for /embedaddon/pcre/config.h.generic between versions 1.1.1.4 and 1.1.1.5

version 1.1.1.4, 2013/07/22 08:25:55 version 1.1.1.5, 2014/06/15 19:46:04
Line 217  sure both macros are undefined; an emulation function  Line 217  sure both macros are undefined; an emulation function 
 #define NEWLINE 10  #define NEWLINE 10
 #endif  #endif
   
 /* Define to 1 if your C compiler doesn't accept -c and -o together. */  
 /* #undef NO_MINUS_C_MINUS_O */  
   
 /* PCRE uses recursive function calls to handle backtracking while matching.  /* PCRE uses recursive function calls to handle backtracking while matching.
    This can sometimes be a problem on systems that have stacks of limited     This can sometimes be a problem on systems that have stacks of limited
    size. Define NO_RECURSE to any value to get a version that doesn't use     size. Define NO_RECURSE to any value to get a version that doesn't use
Line 239  sure both macros are undefined; an emulation function  Line 236  sure both macros are undefined; an emulation function 
 #define PACKAGE_NAME "PCRE"  #define PACKAGE_NAME "PCRE"
   
 /* Define to the full name and version of this package. */  /* Define to the full name and version of this package. */
#define PACKAGE_STRING "PCRE 8.33"#define PACKAGE_STRING "PCRE 8.34"
   
 /* Define to the one symbol short name of this package. */  /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "pcre"  #define PACKAGE_TARNAME "pcre"
Line 248  sure both macros are undefined; an emulation function  Line 245  sure both macros are undefined; an emulation function 
 #define PACKAGE_URL ""  #define PACKAGE_URL ""
   
 /* Define to the version of this package. */  /* Define to the version of this package. */
#define PACKAGE_VERSION "8.33"#define PACKAGE_VERSION "8.34"
   
   /* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
      parentheses (of any kind) in a pattern. This limits the amount of system
      stack that is used while compiling a pattern. */
   #ifndef PARENS_NEST_LIMIT
   #define PARENS_NEST_LIMIT 250
   #endif
   
 /* The value of PCREGREP_BUFSIZE determines the size of buffer used by  /* The value of PCREGREP_BUFSIZE determines the size of buffer used by
    pcregrep to hold parts of the file it is searching. This is also the     pcregrep to hold parts of the file it is searching. This is also the
    minimum value. The actual amount of memory used by pcregrep is three times     minimum value. The actual amount of memory used by pcregrep is three times
Line 291  sure both macros are undefined; an emulation function  Line 295  sure both macros are undefined; an emulation function 
 /* Define to 1 if you have the ANSI C header files. */  /* Define to 1 if you have the ANSI C header files. */
 /* #undef STDC_HEADERS */  /* #undef STDC_HEADERS */
   
 /* Define to allow pcretest and pcregrep to be linked with gcov, so that they  
    are able to generate code coverage reports. */  
 /* #undef SUPPORT_GCOV */  
   
 /* Define to any value to enable support for Just-In-Time compiling. */  /* Define to any value to enable support for Just-In-Time compiling. */
 /* #undef SUPPORT_JIT */  /* #undef SUPPORT_JIT */
   
Line 337  sure both macros are undefined; an emulation function  Line 337  sure both macros are undefined; an emulation function 
 /* #undef SUPPORT_VALGRIND */  /* #undef SUPPORT_VALGRIND */
   
 /* Version number of package */  /* Version number of package */
#define VERSION "8.33"#define VERSION "8.34"
   
 /* Define to empty if `const' does not conform to ANSI C. */  /* Define to empty if `const' does not conform to ANSI C. */
 /* #undef const */  /* #undef const */

Removed from v.1.1.1.4  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>